From a7815995bfe8791bc123b5f283c78d81467dd51e Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Sun, 12 Jun 2016 15:56:42 +0300 Subject: [PATCH] cython: 0.23.4 -> 0.24 --- pkgs/top-level/python-packages.nix | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index fc342922fe8e..cb12e63bfafc 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -3821,21 +3821,22 @@ in modules // { cython = buildPythonPackage rec { name = "Cython-${version}"; - version = "0.23.4"; + version = "0.24"; src = pkgs.fetchurl { url = "http://www.cython.org/release/${name}.tar.gz"; - sha256 = "13hdffhd37mx3gjby018xl179jaj957fy7kzi01crmimxvn2zi7y"; + sha256 = "1wd3q97gia3zhsgcdlvxh26hkrf3m53i6r1l4g0yya119264vr3d"; }; buildInputs = with self; [ pkgs.pkgconfig pkgs.gdb ]; + # For testing + nativeBuildInputs = with self; [ numpy pkgs.ncurses ]; checkPhase = '' + export HOME="$NIX_BUILD_TOP" ${python.interpreter} runtests.py ''; - doCheck = false; # Lots of weird compiler errors - meta = { description = "An optimising static compiler for both the Python programming language and the extended Cython programming language"; platforms = platforms.all;