gnu: crossmap: Update to 0.6.1.

* gnu/packages/bioinformatics.scm (crossmap): Update to 0.6.1.
[source]: Add snippet to remove generated files.
This commit is contained in:
Ricardo Wurmus 2021-12-07 11:42:10 +01:00
parent b5c9afb7c5
commit 478e3e714a
No known key found for this signature in database
GPG Key ID: 197A5888235FACAC

View File

@ -2702,13 +2702,19 @@ time.")
(define-public crossmap
(package
(name "crossmap")
(version "0.3.8")
(version "0.6.1")
(source (origin
(method url-fetch)
(uri (pypi-uri "CrossMap" version))
(sha256
(base32
"1sb2f2qbxya4fzw3yjl09vbrs8vfmw22zrygrvz004sf9gb1vkan"))))
"0hqminh5wn1p3x481jbyc7gmncp5xc196hpvki7k25vzbryhwcix"))
(modules '((guix build utils)))
(snippet
'(begin
;; Delete compiled Python files.
(for-each delete-file (find-files "." "\\.pyc$"))
(delete-file-recursively ".eggs")))))
(build-system python-build-system)
(inputs
`(("python-bx-python" ,python-bx-python)