fix undefined variable

This commit is contained in:
Allen Nelson 2015-05-29 11:02:21 -07:00
parent 6c238d1d5f
commit 18bb7a4047
2 changed files with 3 additions and 3 deletions

View File

@ -7805,7 +7805,7 @@ let
numpy = let numpy = let
support = import ./python-support/numpy-scipy-support.nix { support = import ./python-support/numpy-scipy-support.nix {
inherit python; inherit python;
atlas = atlasWithLapack; atlas = pkgs.atlasWithLapack;
pkgName = "numpy"; pkgName = "numpy";
}; };
in buildPythonPackage ( rec { in buildPythonPackage ( rec {
@ -11183,7 +11183,7 @@ let
scipy = let scipy = let
support = import ./python-support/numpy-scipy-support.nix { support = import ./python-support/numpy-scipy-support.nix {
inherit python; inherit python;
atlas = atlasWithLapack; atlas = pkgs.atlasWithLapack;
pkgName = "numpy"; pkgName = "numpy";
}; };
in buildPythonPackage rec { in buildPythonPackage rec {

View File

@ -16,7 +16,7 @@
_python=${python}/bin/${python.executable} _python=${python}/bin/${python.executable}
# We will "install" into a temp directory, so that we can run the numpy # We will "install" into a temp directory, so that we can run the
# tests (see below). # tests (see below).
install_dir="$TMPDIR/test_install" install_dir="$TMPDIR/test_install"
install_lib="$install_dir/lib/${python.libPrefix}/site-packages" install_lib="$install_dir/lib/${python.libPrefix}/site-packages"