lol

cython: 0.23.4 -> 0.24

+5 -4
+5 -4
pkgs/top-level/python-packages.nix
··· 3821 3821 3822 3822 cython = buildPythonPackage rec { 3823 3823 name = "Cython-${version}"; 3824 - version = "0.23.4"; 3824 + version = "0.24"; 3825 3825 3826 3826 src = pkgs.fetchurl { 3827 3827 url = "http://www.cython.org/release/${name}.tar.gz"; 3828 - sha256 = "13hdffhd37mx3gjby018xl179jaj957fy7kzi01crmimxvn2zi7y"; 3828 + sha256 = "1wd3q97gia3zhsgcdlvxh26hkrf3m53i6r1l4g0yya119264vr3d"; 3829 3829 }; 3830 3830 3831 3831 buildInputs = with self; [ pkgs.pkgconfig pkgs.gdb ]; 3832 + # For testing 3833 + nativeBuildInputs = with self; [ numpy pkgs.ncurses ]; 3832 3834 3833 3835 checkPhase = '' 3836 + export HOME="$NIX_BUILD_TOP" 3834 3837 ${python.interpreter} runtests.py 3835 3838 ''; 3836 - 3837 - doCheck = false; # Lots of weird compiler errors 3838 3839 3839 3840 meta = { 3840 3841 description = "An optimising static compiler for both the Python programming language and the extended Cython programming language";