nixpkgs/pkgs/development/python-modules/cython-test-exception-raiser/default.nix
Jörg Thalheim 5356420466 treewide: remove unused with statements from maintainer lists
$ find -type f -name '*.nix' -print0 | xargs -P "$(nproc)" -0 sed -i \
  -e 's!with lib.maintainers; \[ *\];![ ];!' \
  -e 's!with maintainers; \[ *\];![ ];!'
2024-07-29 10:06:20 +08:00

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 = [ ];
};
}