all-packages.nix: let 'python3' refer to the latest version, python 3.2

svn path=/nixpkgs/trunk/; revision=31432
This commit is contained in:
Peter Simons 2012-01-08 14:43:21 +00:00
parent 2c7ac76079
commit 65715f2e98
1 changed files with 2 additions and 1 deletions
pkgs/top-level

View File

@ -2661,12 +2661,13 @@ let
pure = callPackage ../development/interpreters/pure {}; pure = callPackage ../development/interpreters/pure {};
python = python27; python = python27;
python3 = python32;
python26 = callPackage ../development/interpreters/python/2.6 { }; python26 = callPackage ../development/interpreters/python/2.6 { };
python27 = callPackage ../development/interpreters/python/2.7 { }; python27 = callPackage ../development/interpreters/python/2.7 { };
python3 = callPackage ../development/interpreters/python/3.1 { python31 = callPackage ../development/interpreters/python/3.1 {
arch = if stdenv.isDarwin then pkgs.darwinArchUtility else null; arch = if stdenv.isDarwin then pkgs.darwinArchUtility else null;
sw_vers = if stdenv.isDarwin then pkgs.darwinSwVersUtility else null; sw_vers = if stdenv.isDarwin then pkgs.darwinSwVersUtility else null;
}; };