python: Cython: 0.29.1 -> 0.29.2

This commit is contained in:
Frederik Rietdijk 2019-01-05 13:19:29 +01:00 committed by Frederik Rietdijk
parent 4af059cd15
commit 45e6cb3b76

View File

@ -26,11 +26,11 @@ let
in buildPythonPackage rec { in buildPythonPackage rec {
pname = "Cython"; pname = "Cython";
version = "0.29.1"; version = "0.29.2";
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
sha256 = "15zv9c4ami9hzya28wz1shqljbbk5sxdvqbjxqnf15ssk137daqq"; sha256 = "2ac187ff998a95abb7fae452b5178f91e1a713698c9ced89836c94e6b1d3f41e";
}; };
nativeBuildInputs = [ nativeBuildInputs = [
@ -50,7 +50,12 @@ in buildPythonPackage rec {
''--exclude="(${builtins.concatStringsSep "|" excludedTests})"''} ''--exclude="(${builtins.concatStringsSep "|" excludedTests})"''}
''; '';
doCheck = !stdenv.isDarwin; # https://github.com/cython/cython/issues/2785
# Temporary solution
doCheck = false;
# doCheck = !stdenv.isDarwin;
meta = { meta = {
description = "An optimising static compiler for both the Python programming language and the extended Cython programming language"; description = "An optimising static compiler for both the Python programming language and the extended Cython programming language";