mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-15 21:57:02 +03:00
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:
parent
1877857ea8
commit
6da6b022c1
@ -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;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user