2018-04-12 12:11:04 +00:00
|
|
|
{ lib
|
2021-12-21 21:37:02 +00:00
|
|
|
, autoreconfHook
|
2018-04-12 12:11:04 +00:00
|
|
|
, fetchPypi
|
|
|
|
, buildPythonPackage
|
|
|
|
, cython
|
2018-06-28 11:44:22 +00:00
|
|
|
, pariSupport ? true, pari # for interfacing with the PARI/GP signal handler
|
2018-04-12 12:11:04 +00:00
|
|
|
}:
|
|
|
|
|
2018-06-28 11:44:22 +00:00
|
|
|
assert pariSupport -> pari != null;
|
|
|
|
|
2018-04-12 12:11:04 +00:00
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "cysignals";
|
2021-12-21 21:37:02 +00:00
|
|
|
version = "1.11.2";
|
2018-04-12 12:11:04 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2021-12-21 21:37:02 +00:00
|
|
|
sha256 = "5858b1760fbe21848121b826b2463a67ac5a45caf3d73105497a68618c5a6fa6";
|
2018-04-12 12:11:04 +00:00
|
|
|
};
|
|
|
|
|
2018-06-28 11:44:22 +00:00
|
|
|
# explicit check:
|
|
|
|
# build/src/cysignals/implementation.c:27:2: error: #error "cysignals must be compiled without _FORTIFY_SOURCE"
|
2018-04-12 12:11:04 +00:00
|
|
|
hardeningDisable = [
|
|
|
|
"fortify"
|
|
|
|
];
|
|
|
|
|
2018-12-29 15:16:23 +00:00
|
|
|
# known failure: https://github.com/sagemath/cysignals/blob/582dbf6a7b0f9ade0abe7a7b8720b7fb32435c3c/testgdb.py#L5
|
2018-04-12 12:11:04 +00:00
|
|
|
doCheck = false;
|
2018-12-29 15:16:23 +00:00
|
|
|
checkTarget = "check-install";
|
2018-04-12 12:11:04 +00:00
|
|
|
|
|
|
|
preCheck = ''
|
|
|
|
# Make sure cysignals-CSI is in PATH
|
|
|
|
export PATH="$out/bin:$PATH"
|
|
|
|
'';
|
|
|
|
|
|
|
|
propagatedBuildInputs = [
|
|
|
|
cython
|
2019-03-05 20:55:51 +00:00
|
|
|
] ++ lib.optionals pariSupport [
|
|
|
|
# When cysignals is built with pari, including cysignals into the
|
|
|
|
# buildInputs of another python package will cause cython to link against
|
|
|
|
# pari.
|
|
|
|
pari
|
2018-04-12 12:11:04 +00:00
|
|
|
];
|
|
|
|
|
2021-12-21 21:37:02 +00:00
|
|
|
nativeBuildInputs = [ autoreconfHook ];
|
|
|
|
|
2018-04-12 12:11:04 +00:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2020-11-17 19:41:33 +00:00
|
|
|
meta = with lib; {
|
2018-04-12 12:11:04 +00:00
|
|
|
description = "Interrupt and signal handling for Cython";
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://github.com/sagemath/cysignals/";
|
2020-11-17 19:41:33 +00:00
|
|
|
maintainers = teams.sage.members;
|
|
|
|
license = licenses.lgpl3Plus;
|
2018-04-12 12:11:04 +00:00
|
|
|
};
|
|
|
|
}
|