Merge pull request #47355 from obsidiansystems/numpy-fortran
numpy, scipy: Fix some nativeBuildInputs
This commit is contained in:
commit
8cbf56058a
@ -11,7 +11,8 @@ buildPythonPackage rec {
|
|||||||
};
|
};
|
||||||
|
|
||||||
disabled = isPyPy;
|
disabled = isPyPy;
|
||||||
buildInputs = [ gfortran pytest blas ];
|
nativeBuildInputs = [ gfortran pytest ];
|
||||||
|
buildInputs = [ blas ];
|
||||||
|
|
||||||
patches = lib.optionals (python.hasDistutilsCxxPatch or false) [
|
patches = lib.optionals (python.hasDistutilsCxxPatch or false) [
|
||||||
# We patch cpython/distutils to fix https://bugs.python.org/issue1222585
|
# We patch cpython/distutils to fix https://bugs.python.org/issue1222585
|
||||||
|
@ -10,7 +10,8 @@ buildPythonPackage rec {
|
|||||||
};
|
};
|
||||||
|
|
||||||
checkInputs = [ nose pytest ];
|
checkInputs = [ nose pytest ];
|
||||||
buildInputs = [ gfortran numpy.blas ];
|
nativeBuildInputs = [ gfortran ];
|
||||||
|
buildInputs = [ numpy.blas ];
|
||||||
propagatedBuildInputs = [ numpy ];
|
propagatedBuildInputs = [ numpy ];
|
||||||
|
|
||||||
# Remove tests because of broken wrapper
|
# Remove tests because of broken wrapper
|
||||||
|
Loading…
x
Reference in New Issue
Block a user