me
/
guix
Archived
1
0
Fork 0

gnu: python2-warpedlmm: Fix build.

* gnu/packages/bioinformatics.scm (python2-warpedlmm)[propagated-inputs]: Add
python2-weave.
[arguments]: Disable tests and add "use-weave" phase.
master
Ricardo Wurmus 2020-04-30 13:00:50 +02:00
parent ed33317893
commit 4a148c6da3
No known key found for this signature in database
GPG Key ID: 197A5888235FACAC
1 changed files with 12 additions and 2 deletions

View File

@ -4942,14 +4942,24 @@ files and writing bioinformatics applications.")
"1agfz6zqa8nc6cw47yh0s3y14gkpa9wqazwcj7mwwj3ffnw39p3j"))))
(build-system python-build-system)
(arguments
`(#:python ,python-2)) ; requires Python 2.7
`(#:python ,python-2 ; requires Python 2.7
#:tests? #f ; test data are not included
#:phases
(modify-phases %standard-phases
(add-after 'unpack 'use-weave
(lambda _
(substitute* "warpedlmm/util/linalg.py"
(("from scipy import linalg, weave")
"from scipy import linalg\nimport weave"))
#t)))))
(propagated-inputs
`(("python-scipy" ,python2-scipy)
("python-numpy" ,python2-numpy)
("python-matplotlib" ,python2-matplotlib)
("python-fastlmm" ,python2-fastlmm)
("python-pandas" ,python2-pandas)
("python-pysnptools" ,python2-pysnptools)))
("python-pysnptools" ,python2-pysnptools)
("python-weave" ,python2-weave)))
(native-inputs
`(("python-mock" ,python2-mock)
("python-nose" ,python2-nose)