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

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

@ -16,7 +16,7 @@
_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).
install_dir="$TMPDIR/test_install"
install_lib="$install_dir/lib/${python.libPrefix}/site-packages"