cygwin: python27 gdbm module needs gettext

This commit is contained in:
Rok Garbas 2015-06-11 16:25:56 +02:00
parent 0860826795
commit 617c16f8f6

View file

@ -1,11 +1,11 @@
{ stdenv, fetchurl, self, callPackage
, bzip2, openssl
, bzip2, openssl, gettext
, includeModules ? false
, db, gdbm, ncurses, sqlite, readline
, tcl ? null, tk ? null, x11 ? null, libX11 ? null, x11Support ? true
, tcl ? null, tk ? null, x11 ? null, libX11 ? null, x11Support ? !stdenv.isCygwin
, zlib ? null, zlibSupport ? true
, expat, libffi
}:
@ -224,7 +224,7 @@ let
gdbm = buildInternalPythonModule {
moduleName = "gdbm";
internalName = "gdbm";
deps = [ gdbm ];
deps = [ gdbm ] ++ stdenv.lib.optional stdenv.isCygwin gettext;
};
sqlite3 = buildInternalPythonModule {