mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 22:50:49 +00:00
pythonPackages.scipy: don't propagate blas
This commit is contained in:
parent
983f300d74
commit
d05783a8d7
|
@ -9,8 +9,8 @@ in buildPythonPackage (args // rec {
|
|||
|
||||
name = "scipy-${version}";
|
||||
|
||||
buildInputs = (args.buildInputs or [ gfortran nose ]);
|
||||
propagatedBuildInputs = (args.propagatedBuildInputs or [ passthru.blas numpy]);
|
||||
buildInputs = (args.buildInputs or [ gfortran nose passthru.blas ]);
|
||||
propagatedBuildInputs = (args.propagatedBuildInputs or [ numpy]);
|
||||
|
||||
preConfigure = ''
|
||||
sed -i '0,/from numpy.distutils.core/s//import setuptools;from numpy.distutils.core/' setup.py
|
||||
|
|
Loading…
Reference in a new issue