~ruther/guix-local

e991e91871fda39ee96cf5c8bc134ea45868d11d — Sharlatan Hellseher 3 months ago 7e351da
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>
1 files changed, 5 insertions(+), 5 deletions(-)

M gnu/packages/bioinformatics.scm
M gnu/packages/bioinformatics.scm => gnu/packages/bioinformatics.scm +5 -5
@@ 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))