2017-07-29 11:14:17 +01:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
|
|
|
, python
|
|
|
|
, glibcLocales
|
|
|
|
, pkgconfig
|
|
|
|
, gdb
|
|
|
|
, numpy
|
|
|
|
, ncurses
|
2018-06-10 19:21:33 +01:00
|
|
|
, fetchpatch
|
2017-07-29 11:14:17 +01:00
|
|
|
}:
|
|
|
|
|
2018-06-07 09:50:58 +01:00
|
|
|
let
|
|
|
|
excludedTests = []
|
|
|
|
# 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" ]
|
|
|
|
# Some tests in the test suite isn't working on aarch64. Disable them for
|
|
|
|
# now until upstream finds a workaround.
|
|
|
|
# Upstream issue here: https://github.com/cython/cython/issues/2308
|
|
|
|
++ stdenv.lib.optionals stdenv.isAarch64 [ "numpy_memoryview" ]
|
2018-06-08 13:55:42 +01:00
|
|
|
++ stdenv.lib.optionals stdenv.isi686 [ "future_division" "overflow_check_longlong" ]
|
2018-06-07 09:50:58 +01:00
|
|
|
;
|
|
|
|
|
|
|
|
in buildPythonPackage rec {
|
2017-07-29 11:14:17 +01:00
|
|
|
pname = "Cython";
|
2018-05-28 13:16:08 +01:00
|
|
|
version = "0.28.3";
|
2017-07-29 11:14:17 +01:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2018-05-28 13:16:08 +01:00
|
|
|
sha256 = "1aae6d6e9858888144cea147eb5e677830f45faaff3d305d77378c3cba55f526";
|
2017-07-29 11:14:17 +01:00
|
|
|
};
|
|
|
|
|
2017-09-05 23:03:42 +01:00
|
|
|
nativeBuildInputs = [
|
|
|
|
pkgconfig
|
2018-03-19 22:23:53 +00:00
|
|
|
];
|
|
|
|
checkInputs = [
|
2017-09-05 23:03:42 +01:00
|
|
|
numpy ncurses
|
|
|
|
];
|
2017-09-05 22:26:13 +01:00
|
|
|
buildInputs = [ glibcLocales gdb ];
|
2017-07-29 11:14:17 +01:00
|
|
|
LC_ALL = "en_US.UTF-8";
|
|
|
|
|
|
|
|
checkPhase = ''
|
|
|
|
export HOME="$NIX_BUILD_TOP"
|
2018-07-12 09:08:06 +01:00
|
|
|
${python.interpreter} runtests.py -j$NIX_BUILD_CORES \
|
2018-06-07 09:50:58 +01:00
|
|
|
${stdenv.lib.optionalString (builtins.length excludedTests != 0)
|
|
|
|
''--exclude="(${builtins.concatStringsSep "|" excludedTests})"''}
|
2017-07-29 11:14:17 +01:00
|
|
|
'';
|
|
|
|
|
2018-08-17 03:10:19 +01:00
|
|
|
doCheck = !stdenv.isDarwin;
|
|
|
|
|
2018-06-10 19:21:33 +01:00
|
|
|
patches = [
|
|
|
|
# The following is in GitHub in 0.28.3 but not in the `sdist`.
|
|
|
|
# https://github.com/cython/cython/issues/2319
|
|
|
|
(fetchpatch {
|
|
|
|
url = https://github.com/cython/cython/commit/c485b1b77264c3c75d090a3c526de24966830d42.patch;
|
|
|
|
sha256 = "1p6jj9rb097kqvhs5j5127sj5zy18l7x9v0p478cjyzh41khh9r0";
|
|
|
|
})
|
|
|
|
];
|
|
|
|
|
2017-07-29 11:14:17 +01:00
|
|
|
meta = {
|
|
|
|
description = "An optimising static compiler for both the Python programming language and the extended Cython programming language";
|
|
|
|
homepage = http://cython.org;
|
|
|
|
license = lib.licenses.asl20;
|
|
|
|
maintainers = with lib.maintainers; [ fridh ];
|
|
|
|
};
|
2017-09-05 23:03:42 +01:00
|
|
|
}
|