cygwin: python27 gdbm module needs gettext

+3 -3
+3 -3
pkgs/development/interpreters/python/2.7/default.nix
··· 1 { stdenv, fetchurl, self, callPackage 2 - , bzip2, openssl 3 4 , includeModules ? false 5 6 , db, gdbm, ncurses, sqlite, readline 7 8 - , tcl ? null, tk ? null, x11 ? null, libX11 ? null, x11Support ? true 9 , zlib ? null, zlibSupport ? true 10 , expat, libffi 11 }: ··· 224 gdbm = buildInternalPythonModule { 225 moduleName = "gdbm"; 226 internalName = "gdbm"; 227 - deps = [ gdbm ]; 228 }; 229 230 sqlite3 = buildInternalPythonModule {
··· 1 { stdenv, fetchurl, self, callPackage 2 + , bzip2, openssl, gettext 3 4 , includeModules ? false 5 6 , db, gdbm, ncurses, sqlite, readline 7 8 + , tcl ? null, tk ? null, x11 ? null, libX11 ? null, x11Support ? !stdenv.isCygwin 9 , zlib ? null, zlibSupport ? true 10 , expat, libffi 11 }: ··· 224 gdbm = buildInternalPythonModule { 225 moduleName = "gdbm"; 226 internalName = "gdbm"; 227 + deps = [ gdbm ] ++ stdenv.lib.optional stdenv.isCygwin gettext; 228 }; 229 230 sqlite3 = buildInternalPythonModule {