From e991e91871fda39ee96cf5c8bc134ea45868d11d Mon Sep 17 00:00:00 2001 From: Sharlatan Hellseher Date: Sun, 28 Dec 2025 23:42:13 +0000 Subject: [PATCH] gnu: crossmap: Update to 0.7.3. * gnu/packages/bioinformatics.scm (crossmap): Update to 0.7.3. [source] : Adjust it for a new location of egg info directory. Change-Id: Ic826c4c42c2386dc9d1b301667be1dbb5d2db3eb Signed-off-by: Rutherther --- gnu/packages/bioinformatics.scm | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm index 48baf544926cca23478db00b37f467315e5ab3e8..07da41d4adf9cb4f8fd4fac04c72c52a510f4b0d 100644 --- a/gnu/packages/bioinformatics.scm +++ b/gnu/packages/bioinformatics.scm @@ -6355,21 +6355,21 @@ gene predictor designed to work with assembled, aligned RNA-seq transcripts.") (define-public crossmap (package (name "crossmap") - (version "0.6.1") + (version "0.7.3") (source (origin (method url-fetch) - (uri (pypi-uri "CrossMap" version)) + (uri (pypi-uri "crossmap" version)) (sha256 - (base32 "0hqminh5wn1p3x481jbyc7gmncp5xc196hpvki7k25vzbryhwcix")) + (base32 "0v8z75di5ghrv1aiain67qx9n5lslwq9ikfq44zjp5papwdksyf5")) (modules '((guix build utils))) (snippet '(begin ;; Delete compiled Python files. (for-each delete-file (find-files "." "\\.pyc$")) - (delete-file-recursively ".eggs"))))) + (delete-file-recursively "src/CrossMap.egg-info"))))) (build-system pyproject-build-system) - (arguments (list #:tests? #f)) ; No tests in PyPI. + (arguments (list #:tests? #f)) ; No tests in PyPI and Git. (inputs (list python-bx-python python-numpy python-pybigwig python-pysam zlib)) (native-inputs (list python-cython python-pyparsing python-setuptools))