diff options
| author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-12-28 23:42:13 +0000 |
|---|---|---|
| committer | Rutherther <rutherther@ditigal.xyz> | 2026-01-25 21:19:42 +0100 |
| commit | e991e91871fda39ee96cf5c8bc134ea45868d11d (patch) | |
| tree | dfec3e3fa403698233f8aa68384a1d3312f506a7 /gnu/packages | |
| parent | 7e351da8efc750d4d21214dcee8a265edb6c0ead (diff) | |
gnu: crossmap: Update to 0.7.3.
* gnu/packages/bioinformatics.scm (crossmap): Update to 0.7.3.
[source] <snippet>: Adjust it for a new location of egg info directory.
Change-Id: Ic826c4c42c2386dc9d1b301667be1dbb5d2db3eb
Signed-off-by: Rutherther <rutherther@ditigal.xyz>
Diffstat (limited to 'gnu/packages')
| -rw-r--r-- | gnu/packages/bioinformatics.scm | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm index 48baf544926..07da41d4adf 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)) |
