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-10-06 11:58:29 +01:00
|
|
|
version = "0.28.5";
|
2017-07-29 11:14:17 +01:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2018-10-06 11:58:29 +01:00
|
|
|
sha256 = "b64575241f64f6ec005a4d4137339fb0ba5e156e826db2fdb5f458060d9979e0";
|
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;
|
|
|
|
|
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
|
|
|
}
|