Taylor Bockman 8 years ago
parent
commit
39c8470092
  1. 5
      nix/development/env/python/default.nix

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

@ -11,9 +11,11 @@ buildPythonPackage {
cython # Cython cython # Cython
freetype freetype
gcc # GNU Compiler Collection gcc # GNU Compiler Collection
gfortran
git # Source control git # Source control
atlas # ATLAS atlas # ATLAS
blas # BLAS blas # BLAS
openblas # OpenBLAS
libxml2 # XML2 library libxml2 # XML2 library
libxslt # XLST library libxslt # XLST library
libzip # Zip library libzip # Zip library
@ -25,8 +27,11 @@ buildPythonPackage {
python3Packages.virtualenv python3Packages.virtualenv
python3Packages.setuptools python3Packages.setuptools
stdenv stdenv
which
zlib ]; zlib ];
src = null; src = null;
LAPACK = "test";
BLAS = "test";
# When used as `nix-shell --pure` # When used as `nix-shell --pure`
shellHook = '' shellHook = ''
unset http_proxy unset http_proxy

Loading…
Cancel
Save