forked from mirrors/nixpkgs
fix undefined variable
This commit is contained in:
parent
6c238d1d5f
commit
18bb7a4047
|
@ -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"
|
||||
|
|
Loading…
Reference in a new issue