summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorNikolay Amiantov <ab@fmap.me>2017-09-05 19:34:24 +0300
committerNikolay Amiantov <ab@fmap.me>2017-09-07 17:04:54 +0300
commitdb5a5ccf2b32c98489bce935f05ebb7092bf40ae (patch)
tree0728ef10b3098927c839b87c8379ef298900e691 /pkgs
parentc3b9eca87621f9102eba844c2f89ff4c34944202 (diff)
downloadnixlib-db5a5ccf2b32c98489bce935f05ebb7092bf40ae.tar
nixlib-db5a5ccf2b32c98489bce935f05ebb7092bf40ae.tar.gz
nixlib-db5a5ccf2b32c98489bce935f05ebb7092bf40ae.tar.bz2
nixlib-db5a5ccf2b32c98489bce935f05ebb7092bf40ae.tar.lz
nixlib-db5a5ccf2b32c98489bce935f05ebb7092bf40ae.tar.xz
nixlib-db5a5ccf2b32c98489bce935f05ebb7092bf40ae.tar.zst
nixlib-db5a5ccf2b32c98489bce935f05ebb7092bf40ae.zip
python.pkgs.TheanoWithoutCuda: don't propagate stdenv
Fixes errors during buildEnv.
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/python-modules/Theano/theano-without-cuda/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/python-modules/Theano/theano-without-cuda/default.nix b/pkgs/development/python-modules/Theano/theano-without-cuda/default.nix
index 902554070029..e93af7436190 100644
--- a/pkgs/development/python-modules/Theano/theano-without-cuda/default.nix
+++ b/pkgs/development/python-modules/Theano/theano-without-cuda/default.nix
@@ -31,7 +31,7 @@ buildPythonPackage rec {
   # the fix for which hasn't been merged yet.
 
   # keep Nose around since running the tests by hand is possible from Python or bash
-  propagatedBuildInputs = [ stdenv nose numpy numpy.blas pydot_ng scipy six ];
+  propagatedBuildInputs = [ nose numpy numpy.blas pydot_ng scipy six ];
 
   meta = {
     homepage = http://deeplearning.net/software/theano/;