gnu: idr: Update to 2.0.3.
* gnu/packages/bioinformatics.scm (idr): Update to 2.0.3. [source]: Add snippet to remove generated code.
This commit is contained in:
parent
40590caf3b
commit
aa33cc29ca
|
@ -3050,7 +3050,7 @@ data. It also provides the bgzip, htsfile, and tabix utilities.")
|
||||||
(define-public idr
|
(define-public idr
|
||||||
(package
|
(package
|
||||||
(name "idr")
|
(name "idr")
|
||||||
(version "2.0.0")
|
(version "2.0.3")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append
|
(uri (string-append
|
||||||
|
@ -3059,10 +3059,15 @@ data. It also provides the bgzip, htsfile, and tabix utilities.")
|
||||||
(file-name (string-append name "-" version ".tar.gz"))
|
(file-name (string-append name "-" version ".tar.gz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1k3x44biak00aiv3hpm1yd6nn4hhp7n0qnbs3zh2q9sw7qr1qj5r"))))
|
"1rjdly6daslw66r43g9md8znizlscn1sphycqyldzsidkc4vxqv3"))
|
||||||
|
;; Delete generated C code.
|
||||||
|
(snippet
|
||||||
|
'(begin (delete-file "idr/inv_cdf.c") #t))))
|
||||||
(build-system python-build-system)
|
(build-system python-build-system)
|
||||||
(arguments
|
;; There is only one test ("test_inv_cdf.py") and it tests features that
|
||||||
`(#:tests? #f)) ; FIXME: "ImportError: No module named 'utility'"
|
;; are no longer part of this package. It also asserts False, which
|
||||||
|
;; causes the tests to always fail.
|
||||||
|
(arguments `(#:tests? #f))
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
`(("python-scipy" ,python-scipy)
|
`(("python-scipy" ,python-scipy)
|
||||||
("python-sympy" ,python-sympy)
|
("python-sympy" ,python-sympy)
|
||||||
|
|
Loading…
Reference in New Issue