pythonPackages.cython: 0.28.5 -> 0.29

Needs a sage patch from
https://trac.sagemath.org/ticket/25292
This commit is contained in:
Timo Kaufmann
2018-10-22 22:32:23 +02:00
committed by Frederik Rietdijk
parent 6825495caf
commit 2ce2fcfc30
2 changed files with 21 additions and 3 deletions

View File

@@ -13,6 +13,7 @@
let
excludedTests = []
++ [ "reimport_from_subinterpreter" ]
# cython's testsuite is not working very well with libc++
# We are however optimistic about things outside of testsuite still working
++ stdenv.lib.optionals (stdenv.cc.isClang or false) [ "cpdef_extern_func" "libcpp_algo" ]
@@ -25,11 +26,11 @@ let
in buildPythonPackage rec {
pname = "Cython";
version = "0.28.5";
version = "0.29";
src = fetchPypi {
inherit pname version;
sha256 = "b64575241f64f6ec005a4d4137339fb0ba5e156e826db2fdb5f458060d9979e0";
sha256 = "15zama7fgp7yyi3z39xp3z2lvwcgch8fn3ycscw2cs37vqg6v4cl";
};
nativeBuildInputs = [