Remove lingering dependence on atlas with numpy.

Closes https://github.com/NixOS/nixpkgs/pull/8133.
This commit is contained in:
Allen Nelson 2015-06-02 10:58:17 -05:00 committed by Peter Simons
parent f1587a2d1e
commit 8bf170f280
2 changed files with 5 additions and 2 deletions

View File

@ -8,6 +8,9 @@
}:
{
# Re-export atlas here so that it can be sure that the same one will be used
# in the propagatedBuildInputs.
inherit atlas;
# First "install" the package, then import what was installed, and call the
# .test() function, which will run the test suite.
@ -40,7 +43,7 @@
runHook postCheck
'';
# Creates a site.cfg telling the setup script where to find depended-on
# Creates a site.cfg telling the setup script where to find depended-on
# math libraries.
preBuild = ''
echo "Creating site.cfg file..."

View File

@ -7821,7 +7821,7 @@ let
setupPyBuildFlags = ["--fcompiler='gnu95'"];
buildInputs = [ pkgs.gfortran self.nose ];
propagatedBuildInputs = [ pkgs.atlas ];
propagatedBuildInputs = [ support.atlas ];
meta = {
description = "Scientific tools for Python";