guix_mirror_bot pushed a commit to branch master
in repository guix.

commit 84978f7277cc22141f61080ea8141de4a9c1e260
Author: Nicolas Graves <[email protected]>
AuthorDate: Sat Nov 29 20:58:41 2025 +0100

    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 <[email protected]>
---
 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 57166aa64b..3f63181efd 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

Reply via email to