Files
nixpkgs/pkgs/development/python-modules/cython-test-exception-raiser/default.nix
T
Ihar Hrachyshka 567e8dfd8e treewide: clean up 'meta = with' pattern
This commit was created by a combination of scripts and tools:
- an ast-grep script to prefix things in meta with `lib.`,
- a modified nixf-diagnose / nixf combination to remove unused `with
lib;`, and
- regular nixfmt.

Co-authored-by: Wolfgang Walther <walther@technowledgy.de>
2025-12-10 18:09:49 +01:00

41 lines
925 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 = {
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 lib.licenses; [
publicDomain
mit
];
maintainers = [ ];
};
}