cygwin: python27 gdbm module needs gettext

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