summary refs log tree commit diff
path: root/pkgs/development/interpreters/python
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2012-02-28 11:09:36 +0000
committerEelco Dolstra <eelco.dolstra@logicblox.com>2012-02-28 11:09:36 +0000
commitb14a737a4d86608bd61acf08cfc479bf262e9d99 (patch)
treeb89f7c55ac2fabb5447212c34a49f23ca2d28fcb /pkgs/development/interpreters/python
parentff37a57373b085579ba823e058a150a957b40e38 (diff)
downloadnixlib-b14a737a4d86608bd61acf08cfc479bf262e9d99.tar
nixlib-b14a737a4d86608bd61acf08cfc479bf262e9d99.tar.gz
nixlib-b14a737a4d86608bd61acf08cfc479bf262e9d99.tar.bz2
nixlib-b14a737a4d86608bd61acf08cfc479bf262e9d99.tar.lz
nixlib-b14a737a4d86608bd61acf08cfc479bf262e9d99.tar.xz
nixlib-b14a737a4d86608bd61acf08cfc479bf262e9d99.tar.zst
nixlib-b14a737a4d86608bd61acf08cfc479bf262e9d99.zip
* Since we're rebuilding everything that depends on Python anyway, we
  may as well update Python to the latest stable version.

svn path=/nixpkgs/branches/stdenv-updates/; revision=32675
Diffstat (limited to 'pkgs/development/interpreters/python')
-rw-r--r--pkgs/development/interpreters/python/2.6/default.nix4
-rw-r--r--pkgs/development/interpreters/python/2.7/default.nix4
2 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/development/interpreters/python/2.6/default.nix b/pkgs/development/interpreters/python/2.6/default.nix
index 3ae16d26d614..5df2322d4f60 100644
--- a/pkgs/development/interpreters/python/2.6/default.nix
+++ b/pkgs/development/interpreters/python/2.6/default.nix
@@ -12,11 +12,11 @@ with stdenv.lib;
 let
 
   majorVersion = "2.6";
-  version = "${majorVersion}.6";
+  version = "${majorVersion}.7";
 
   src = fetchurl {
     url = "http://www.python.org/ftp/python/${version}/Python-${version}.tar.bz2";
-    md5 = "cf4e6881bb84a7ce6089e4a307f71f14";
+    md5 = "0p0fd8i533zsdm6gc0jmhmdifccx4v064mh0i1hl2s6fcjhc20j5";
   };
   
   patches =
diff --git a/pkgs/development/interpreters/python/2.7/default.nix b/pkgs/development/interpreters/python/2.7/default.nix
index 968a4859aed7..986937376767 100644
--- a/pkgs/development/interpreters/python/2.7/default.nix
+++ b/pkgs/development/interpreters/python/2.7/default.nix
@@ -12,11 +12,11 @@ with stdenv.lib;
 let
 
   majorVersion = "2.7";
-  version = "${majorVersion}.1";
+  version = "${majorVersion}.2";
 
   src = fetchurl {
     url = "http://www.python.org/ftp/python/${version}/Python-${version}.tar.bz2";
-    sha256 = "14i2c7yqa7ljmx2i2bb827n61q33zn23ax96czi8rbkyyny8gqw0";
+    sha256 = "1axx9h1r157fanldmnj1q2gdw2sm0sg8h3mx1l2adddmgq3fnmsh";
   };
 
   patches =