python: pass stdenv.glibc to crypt module to expose crypt.so

This commit is contained in:
Domen Kožar 2015-05-13 18:39:50 +02:00
parent fef86de618
commit d769b52307
2 changed files with 2 additions and 2 deletions

View File

@ -169,7 +169,7 @@ let
crypt = buildInternalPythonModule {
moduleName = "crypt";
internalName = "crypt";
deps = [ ];
deps = [ stdenv.glibc ];
};
curses = buildInternalPythonModule {

View File

@ -196,7 +196,7 @@ let
crypt = buildInternalPythonModule {
moduleName = "crypt";
internalName = "crypt";
deps = [ ];
deps = [ stdenv.glibc ];
};
gdbm = buildInternalPythonModule {