9 buildPythonPackage rec {
13 # github version comes bundled with tests
14 src = fetchFromGitHub {
15 owner = "sassoftware";
16 repo = "python-keyutils";
18 sha256 = "0pfqfr5xqgsqkxzrmj8xl2glyl4nbq0irs0k6ik7iy3gd3mxf5g1";
22 substituteInPlace setup.py --replace '"pytest-runner"' ""
26 cython keyutils/_keyutils.pyx
33 buildInputs = [ keyutils ];
34 nativeBuildInputs = [ cython ];
40 description = "A set of python bindings for keyutils";
41 homepage = "https://github.com/sassoftware/python-keyutils";
42 license = lib.licenses.asl20;
43 maintainers = with lib.maintainers; [ primeos ];