rekado pushed a commit to branch core-updates-frozen
in repository guix.
commit 3ebcd637a589cbea1868992bd5c6f2b8477181fc
Author: Ricardo Wurmus <[email protected]>
AuthorDate: Wed Dec 8 23:45:21 2021 +0100
gnu: python2-scipy: Override native inputs.
* gnu/packages/python-science.scm (python2-scipy)[native-inputs]: Override;
replace gfortran with gfortran-7; add gcc-7.
---
gnu/packages/python-science.scm | 11 ++++++++++-
1 file changed, 10 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/python-science.scm b/gnu/packages/python-science.scm
index 0677843..eb1f831 100644
--- a/gnu/packages/python-science.scm
+++ b/gnu/packages/python-science.scm
@@ -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