nixpkgs/pkgs/development/python-modules/cysignals/default.nix

51 lines
1.1 KiB
Nix
Raw Normal View History

{ lib
, fetchPypi
, buildPythonPackage
, cython
2018-06-28 13:44:22 +02:00
, pariSupport ? true, pari # for interfacing with the PARI/GP signal handler
}:
2018-06-28 13:44:22 +02:00
assert pariSupport -> pari != null;
buildPythonPackage rec {
pname = "cysignals";
version = "1.7.2";
src = fetchPypi {
inherit pname version;
sha256 = "0rzwd9bjw6bj01xcmimqfim1g0njjyyyal0f93frm1la4hcmq96v";
};
2018-06-28 13:44:22 +02:00
# explicit check:
# build/src/cysignals/implementation.c:27:2: error: #error "cysignals must be compiled without _FORTIFY_SOURCE"
hardeningDisable = [
"fortify"
];
# currently fails, probably because of formatting changes in gdb 8.0
# https://trac.sagemath.org/ticket/24692
doCheck = false;
preCheck = ''
# Make sure cysignals-CSI is in PATH
export PATH="$out/bin:$PATH"
'';
2018-06-28 13:44:22 +02:00
buildInputs = lib.optionals pariSupport [
pari
];
propagatedBuildInputs = [
cython
];
enableParallelBuilding = true;
meta = {
description = "Interrupt and signal handling for Cython";
homepage = https://github.com/sagemath/cysignals/;
maintainers = with lib.maintainers; [ timokau ];
license = lib.licenses.lgpl3Plus;
};
}