pythonPackages.cython: Disable tests on i686 (#41633)

This commit is contained in:
volth 2018-06-08 12:55:42 +00:00 committed by Robert Schütz
parent 24ea891715
commit 6b27c4e149

View File

@ -20,6 +20,7 @@ let
# now until upstream finds a workaround. # now until upstream finds a workaround.
# Upstream issue here: https://github.com/cython/cython/issues/2308 # Upstream issue here: https://github.com/cython/cython/issues/2308
++ stdenv.lib.optionals stdenv.isAarch64 [ "numpy_memoryview" ] ++ stdenv.lib.optionals stdenv.isAarch64 [ "numpy_memoryview" ]
++ stdenv.lib.optionals stdenv.isi686 [ "future_division" "overflow_check_longlong" ]
; ;
in buildPythonPackage rec { in buildPythonPackage rec {