me
/
guix
Archived
1
0
Fork 0

gnu: python2-scipy: Override native inputs.

* gnu/packages/python-science.scm (python2-scipy)[native-inputs]: Override;
replace gfortran with gfortran-7; add gcc-7.
master
Ricardo Wurmus 2021-12-08 23:45:21 +01:00
parent 3cd37c94bd
commit 3ebcd637a5
No known key found for this signature in database
GPG Key ID: 197A5888235FACAC
1 changed files with 10 additions and 1 deletions

View File

@ -186,7 +186,16 @@ routines such as routines for numerical integration and optimization.")
(uri (pypi-uri "scipy" version))
(sha256
(base32
"1cgvgin8fvckv96hjh3ikmwkra5rif51bdb75ifzf7xbil5iwcx4"))))))
"1cgvgin8fvckv96hjh3ikmwkra5rif51bdb75ifzf7xbil5iwcx4"))))
(native-inputs
`(("python-cython" ,python2-cython)
("python-pytest" ,python2-pytest)
("python-sphinx" ,python2-sphinx)
("python-numpydoc" ,python2-numpydoc)
("gfortran" ,gfortran-7)
("gcc" ,gcc-7)
("perl" ,perl)
("which" ,which)))))
(define-public python2-weave
(package