about summary refs log tree commit diff
path: root/pkgs/development/interpreters/python/3.4
diff options
context:
space:
mode:
authorGeorges Dubus <georges.dubus@compiletoi.net>2014-03-17 15:19:24 +0100
committerGeorges Dubus <georges.dubus@compiletoi.net>2014-03-17 17:07:20 +0100
commit24e9c676d285c0aa6b522df445630ef51c96a927 (patch)
tree17891458aa353aaf99436a450ac2d349d2e1cb02 /pkgs/development/interpreters/python/3.4
parentb0b70b53300a760e75faad29ce00ecf013ea7484 (diff)
downloadnixlib-24e9c676d285c0aa6b522df445630ef51c96a927.tar
nixlib-24e9c676d285c0aa6b522df445630ef51c96a927.tar.gz
nixlib-24e9c676d285c0aa6b522df445630ef51c96a927.tar.bz2
nixlib-24e9c676d285c0aa6b522df445630ef51c96a927.tar.lz
nixlib-24e9c676d285c0aa6b522df445630ef51c96a927.tar.xz
nixlib-24e9c676d285c0aa6b522df445630ef51c96a927.tar.zst
nixlib-24e9c676d285c0aa6b522df445630ef51c96a927.zip
python: update 3.4.0 to stable release
Diffstat (limited to 'pkgs/development/interpreters/python/3.4')
-rw-r--r--pkgs/development/interpreters/python/3.4/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/interpreters/python/3.4/default.nix b/pkgs/development/interpreters/python/3.4/default.nix
index 8d7da9d91e64..3725586f3f4c 100644
--- a/pkgs/development/interpreters/python/3.4/default.nix
+++ b/pkgs/development/interpreters/python/3.4/default.nix
@@ -18,7 +18,7 @@ with stdenv.lib;
 let
   majorVersion = "3.4";
   version = "${majorVersion}.0";
-  fullVersion = "${version}rc2";
+  fullVersion = "${version}";
 
   buildInputs = filter (p: p != null) [
     zlib bzip2 gdbm sqlite db readline ncurses openssl tcl tk libX11 xproto
@@ -30,7 +30,7 @@ stdenv.mkDerivation {
 
   src = fetchurl {
     url = "http://www.python.org/ftp/python/${version}/Python-${fullVersion}.tar.xz";
-    sha256 = "0v37mlkwzbc8m54h3nb04x6xm2yx5fmd7flq2shn37ixf9d0ih6z";
+    sha256 = "1gjcn5c3zqg161vwzh43ciha15w0plf5v7cyfm372pnllb08cdpi";
   };
 
   NIX_LDFLAGS = stdenv.lib.optionalString stdenv.isLinux "-lgcc_s";