Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
41 lines
931 B
Nix
41 lines
931 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
cython,
|
|
setuptools,
|
|
wheel,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "cython-test-exception-raiser";
|
|
version = "1.0.2";
|
|
format = "pyproject";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "twisted";
|
|
repo = "cython-test-exception-raiser";
|
|
rev = "v${version}";
|
|
hash = "sha256-fwMq0pOrFUJnPndH/a6ghoo6mlcVSxtsWazqE9mCx3M=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
cython
|
|
setuptools
|
|
wheel
|
|
];
|
|
|
|
pythonImportsCheck = [ "cython_test_exception_raiser" ];
|
|
|
|
meta = with lib; {
|
|
description = "Testing only. A cython simple extension which is used as helper for twisted/twisted Failure tests";
|
|
homepage = "https://github.com/twisted/cython-test-exception-raiser";
|
|
changelog = "https://github.com/twisted/cython-test-exception-raiser/blob/${src.rev}/CHANGELOG.rst";
|
|
license = with licenses; [
|
|
publicDomain
|
|
mit
|
|
];
|
|
maintainers = [ ];
|
|
};
|
|
}
|