numpy: reverted build fix that committed earlier on behalf of Konrad Hinsen

The patch broke the build of matplotlib.

svn path=/nixpkgs/trunk/; revision=34023
This commit is contained in:
Peter Simons
2012-05-09 07:22:18 +00:00
parent b713e291a4
commit 1cdbd5add0
2 changed files with 2 additions and 31 deletions

View File

@@ -1179,10 +1179,9 @@ let pythonPackages = python.modules // rec {
sha256 = "1pawfmf7j7pd3mjzhmmw9hkglc2qdirrkvv29m5nsmpf2b3ip2vq";
};
patches = [ ../development/python-modules/numpy/no_default_dirs.patch ];
# TODO: add ATLAS=${pkgs.atlas}
installCommand = ''
export BLAS=${pkgs.blas} LAPACK=${pkgs.liblapack} ATLAS=${pkgs.atlas}
export BLAS=${pkgs.blas} LAPACK=${pkgs.liblapack}
python setup.py build --fcompiler="gnu95"
python setup.py install --prefix=$out
'';