From 84978f7277cc22141f61080ea8141de4a9c1e260 Mon Sep 17 00:00:00 2001 From: Nicolas Graves Date: Sat, 29 Nov 2025 20:58:41 +0100 Subject: [PATCH] gnu: crossmap: Disable tests. python-nose runs 0 tests, let's remove it and disable tests instead. * gnu/packages/bioinformatics.scm (crossmap) [arguments]<#:tests?>: Disable them. [native-inputs]: Remove python-nose, python-wheel. Change-Id: I2fbbefac935901c4bafea3b8c941b81d3e404a23 Signed-off-by: Sharlatan Hellseher --- gnu/packages/bioinformatics.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm index 57166aa64b9b17f7dd61a57ee318cbae7d80816c..3f63181efd2ff77ec081737655ea2b72a3490f06 100644 --- a/gnu/packages/bioinformatics.scm +++ b/gnu/packages/bioinformatics.scm @@ -6366,10 +6366,10 @@ gene predictor designed to work with assembled, aligned RNA-seq transcripts.") (find-files "." "\\.pyc$")) (delete-file-recursively ".eggs"))))) (build-system pyproject-build-system) + (arguments (list #:tests? #f)) ; No tests in PyPI. (inputs (list python-bx-python python-numpy python-pybigwig python-pysam zlib)) - (native-inputs (list python-cython python-nose python-pyparsing - python-setuptools python-wheel)) + (native-inputs (list python-cython python-pyparsing python-setuptools)) (home-page "https://crossmap.sourceforge.net/") (synopsis "Convert genome coordinates between assemblies") (description