Skip to content

Commit

Permalink
python: fix modules in buildEnv, closes #16646
Browse files Browse the repository at this point in the history
Python 2.7 on Nix is stripped of some modules, which can be added when
needed. This was broken with python.buildEnv.
  • Loading branch information
FRidh committed Jul 1, 2016
1 parent e77eba3 commit 880475b
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions pkgs/development/interpreters/python/2.7/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -193,6 +193,9 @@ let

buildInputs = [ python ] ++ deps;

# We need to set this for python.buildEnv
pythonPath = [];

inherit (mkPaths buildInputs) C_INCLUDE_PATH LIBRARY_PATH;

# non-python gdbm has a libintl dependency on i686-cygwin, not on x86_64-cygwin
Expand Down

0 comments on commit 880475b

Please sign in to comment.