about summary refs log tree commit diff
path: root/pkgs/development/interpreters/python
diff options
context:
space:
mode:
authorCillian de Róiste <goibhniu@fsfe.org>2013-03-28 01:10:23 +0100
committerCillian de Róiste <goibhniu@fsfe.org>2013-03-28 01:10:23 +0100
commita5e48c0f2062da5c5cc00412f0c021172c104aa5 (patch)
tree9f81193f151db859ad33a209ea4d640716f5cc0e /pkgs/development/interpreters/python
parent2ef559c51361de8e40937f05e670f38fdb2c42cb (diff)
downloadnixlib-a5e48c0f2062da5c5cc00412f0c021172c104aa5.tar
nixlib-a5e48c0f2062da5c5cc00412f0c021172c104aa5.tar.gz
nixlib-a5e48c0f2062da5c5cc00412f0c021172c104aa5.tar.bz2
nixlib-a5e48c0f2062da5c5cc00412f0c021172c104aa5.tar.lz
nixlib-a5e48c0f2062da5c5cc00412f0c021172c104aa5.tar.xz
nixlib-a5e48c0f2062da5c5cc00412f0c021172c104aa5.tar.zst
nixlib-a5e48c0f2062da5c5cc00412f0c021172c104aa5.zip
Python 3.3 upgrade to 3.3.1rc1 to fix an important bug for Nix
http://bugs.python.org/issue15833

When Python 3.3.0 attempts to compile python bytecode in the system
directories it raises and exception and stops. Since Python 3.3 is
only required by the latest Blender, I hope it's OK to use the RC
until the final release.
Diffstat (limited to 'pkgs/development/interpreters/python')
-rw-r--r--pkgs/development/interpreters/python/3.3/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/interpreters/python/3.3/default.nix b/pkgs/development/interpreters/python/3.3/default.nix
index dc9f99e9cdcc..7baecad76c6b 100644
--- a/pkgs/development/interpreters/python/3.3/default.nix
+++ b/pkgs/development/interpreters/python/3.3/default.nix
@@ -17,7 +17,7 @@ with stdenv.lib;
 
 let
   majorVersion = "3.3";
-  version = "${majorVersion}.0";
+  version = "${majorVersion}.1rc1";
 
   buildInputs = filter (p: p != null) [
     zlib bzip2 gdbm sqlite db4 readline ncurses openssl tcl tk libX11 xproto
@@ -29,7 +29,7 @@ stdenv.mkDerivation {
 
   src = fetchurl {
     url = "http://www.python.org/ftp/python/${version}/Python-${version}.tar.bz2";
-    sha256 = "1ybdf7wc8pfw51rf7xcywfw27n6l97qyzd1ibpq151q5dkyi7h8m";
+    sha256 = "1pnsbdzbd3750jcy32sv1760lv7am4x3f33jn1kmdmd82za279gv";
   };
 
   preConfigure = ''