mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-20 00:53:12 +03:00
pythonPackages.cysignals: init at 1.6.9 (#38781)
This commit is contained in:
parent
766ecbb57a
commit
2112768fe6
41
pkgs/development/python-modules/cysignals/default.nix
Normal file
41
pkgs/development/python-modules/cysignals/default.nix
Normal file
@ -0,0 +1,41 @@
|
||||
{ lib
|
||||
, fetchPypi
|
||||
, buildPythonPackage
|
||||
, cython
|
||||
, sphinx
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "cysignals";
|
||||
version = "1.6.9";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "003invnixqy1h4lb358vwrxykxzp15csaddkgq3pqqmswnva5908";
|
||||
};
|
||||
|
||||
hardeningDisable = [
|
||||
"fortify"
|
||||
];
|
||||
|
||||
# currently fails, probably because of formatting changes in gdb 8.0
|
||||
doCheck = false;
|
||||
|
||||
preCheck = ''
|
||||
# Make sure cysignals-CSI is in PATH
|
||||
export PATH="$out/bin:$PATH"
|
||||
'';
|
||||
|
||||
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;
|
||||
};
|
||||
}
|
@ -1203,6 +1203,8 @@ in {
|
||||
|
||||
cycler = callPackage ../development/python-modules/cycler { };
|
||||
|
||||
cysignals = callPackage ../development/python-modules/cysignals { };
|
||||
|
||||
dlib = buildPythonPackage rec {
|
||||
inherit (pkgs.dlib) name src nativeBuildInputs meta;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user