python: 3.4.3 -> 3.4.4

(cherry picked from commit 78096e9b89)
Signed-off-by: Domen Kožar <domen@dev.si>
This commit is contained in:
Domen Kožar 2016-01-07 11:19:22 +01:00
parent 21bfd2f952
commit f0898a4664

View File

@ -21,7 +21,7 @@ with stdenv.lib;
let
majorVersion = "3.4";
pythonVersion = majorVersion;
version = "${majorVersion}.3";
version = "${majorVersion}.4";
fullVersion = "${version}";
buildInputs = filter (p: p != null) [
@ -35,7 +35,7 @@ stdenv.mkDerivation {
src = fetchurl {
url = "http://www.python.org/ftp/python/${version}/Python-${fullVersion}.tar.xz";
sha256 = "1f4nm4z08sy0kqwisvv95l02crv6dyysdmx44p1mz3bn6csrdcxm";
sha256 = "18kb5c29w04rj4gyz3jngm72sy8izfnbjlm6ajv6rv2m061d75x7";
};
NIX_LDFLAGS = stdenv.lib.optionalString stdenv.isLinux "-lgcc_s";