Merge pull request #753 from lovek323/numpy

numpy: fix build on darwin
This commit is contained in:
Domen Kožar 2013-07-19 12:08:33 -07:00
commit 60c82048e0

@ -3084,6 +3084,10 @@ pythonPackages = python.modules // rec {
sha256 = "1pawfmf7j7pd3mjzhmmw9hkglc2qdirrkvv29m5nsmpf2b3ip2vq";
};
preConfigure = ''
sed -i 's/-faltivec//' numpy/distutils/system_info.py
'';
# TODO: add ATLAS=${pkgs.atlas}
installCommand = ''
export BLAS=${pkgs.blas} LAPACK=${pkgs.liblapack}