pkgs/top-level/all-packages.nix: dropped lowPrio wrapper around python3

Python 3.x was originally marked as 'low priority' to prevent unintended
updates from version 2 to 3. Meanwhile, the python3 expression has been
renamed to use a different package name, so these kind of accidental updates
can no longer happen.

svn path=/nixpkgs/trunk/; revision=25750
This commit is contained in:
Peter Simons 2011-02-02 11:16:36 +00:00
parent 1877857ea8
commit 6da6b022c1

View File

@ -2338,11 +2338,11 @@ let
inherit (pkgs.xlibs) libX11 xproto;
});
python3 = lowPrio (makeOverridable (import ../development/interpreters/python/3.1) {
python3 = makeOverridable (import ../development/interpreters/python/3.1) {
inherit (pkgs) fetchurl stdenv zlib bzip2 gdbm;
arch = if stdenv.isDarwin then pkgs.darwinArchUtility else null;
sw_vers = if stdenv.isDarwin then pkgs.darwinSwVersUtility else null;
});
};
pyrex = pyrex095;