pkgs/top-level/all-packages.nix: lower priority of python27Base to ensure the full version is installed by default

svn path=/nixpkgs/trunk/; revision=23146
This commit is contained in:
Peter Simons 2010-08-12 12:53:51 +00:00
parent 65eb1a248f
commit 63ce55d859

View File

@ -2117,11 +2117,11 @@ let
ncurses = if getConfig ["python" "curses"] true then ncurses else null;
});
python27Base = makeOverridable (import ../development/interpreters/python/2.7) {
python27Base = lowPrio (makeOverridable (import ../development/interpreters/python/2.7) {
inherit fetchurl stdenv zlib bzip2 gdbm;
arch = if stdenv.isDarwin then darwinArchUtility else null;
sw_vers = if stdenv.isDarwin then darwinSwVersUtility else null;
};
});
python27Full = python27Base.override {
inherit db4 sqlite readline openssl tcl tk ncurses;