pkgs/top-level/all-packages.nix: removed lowPri modifier from python27Full

The "full" version is preferrable over the "base" version in user
profiles.

svn path=/nixpkgs/trunk/; revision=23141
This commit is contained in:
Peter Simons 2010-08-12 11:23:54 +00:00
parent a1039a2744
commit ff1c057f7a

View File

@ -2123,7 +2123,7 @@ let
sw_vers = if stdenv.isDarwin then darwinSwVersUtility else null;
};
python27Full = lowPrio (python27Base.override {
python27Full = python27Base.override {
# FIXME: We lack ncurses support, needed, e.g., for `gpsd'.
db4 = if getConfig ["python" "db4Support"] true then db4 else null;
sqlite = if getConfig ["python" "sqliteSupport"] true then sqlite else null;
@ -2134,7 +2134,7 @@ let
libX11 = if getConfig ["python" "tkSupport"] true then xlibs.libX11 else null;
xproto = if getConfig ["python" "tkSupport"] true then xlibs.xproto else null;
ncurses = if getConfig ["python" "curses"] true then ncurses else null;
});
};
python31Base = lowPrio (makeOverridable (import ../development/interpreters/python/3.1) {
inherit fetchurl stdenv zlib bzip2 gdbm;