about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorFrederik Rietdijk <fridh@fridh.nl>2016-04-25 17:46:06 +0200
committerFrederik Rietdijk <fridh@fridh.nl>2016-04-25 17:46:06 +0200
commit983f300d74852b5a4a810085a508d413d9c56a1f (patch)
treed84adf781e4457b01b24c2802625d502a2ac292d /pkgs
parentb843ef426c5bb348864c0cb6bd42d4752e3a0a42 (diff)
downloadnixlib-983f300d74852b5a4a810085a508d413d9c56a1f.tar
nixlib-983f300d74852b5a4a810085a508d413d9c56a1f.tar.gz
nixlib-983f300d74852b5a4a810085a508d413d9c56a1f.tar.bz2
nixlib-983f300d74852b5a4a810085a508d413d9c56a1f.tar.lz
nixlib-983f300d74852b5a4a810085a508d413d9c56a1f.tar.xz
nixlib-983f300d74852b5a4a810085a508d413d9c56a1f.tar.zst
nixlib-983f300d74852b5a4a810085a508d413d9c56a1f.zip
pythonPackages.numpy: don't propagate blas
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/python-modules/numpy.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/python-modules/numpy.nix b/pkgs/development/python-modules/numpy.nix
index 141c8b14fa6d..0276d9ede3dd 100644
--- a/pkgs/development/python-modules/numpy.nix
+++ b/pkgs/development/python-modules/numpy.nix
@@ -9,8 +9,8 @@ in buildPythonPackage (args // rec {
   name = "numpy-${version}";
 
   disabled = isPyPy;
-  buildInputs = args.buildInputs or [ gfortran nose ];
-  propagatedBuildInputs = args.propagatedBuildInputs or [ passthru.blas ];
+  buildInputs = args.buildInputs or [ gfortran nose passthru.blas ];
+  propagatedBuildInputs = args.propagatedBuildInputs or [ ];
 
   preConfigure = ''
     sed -i 's/-faltivec//' numpy/distutils/system_info.py