Browse Source

Add correct environment variables for scipy builds

Taylor Bockman 8 years ago
parent
commit
b0c7293264
  1. 8
      nix/development/env/python/default.nix

8
nix/development/env/python/default.nix vendored

@ -30,8 +30,12 @@ buildPythonPackage {
which
zlib ];
src = null;
LAPACK = "test";
BLAS = "test";
# Environment variables for scipy builds
ATLAS = atlas;
BLAS = blas;
LAPACK = liblapack;
# When used as `nix-shell --pure`
shellHook = ''
unset http_proxy

Loading…
Cancel
Save