1 { lib, buildPythonPackage, fetchFromGitHub, keyutils, pytestrunner, pytest }:
3 buildPythonPackage rec {
7 # github version comes bundled with tests
8 src = fetchFromGitHub {
10 repo = "python-keyutils";
12 sha256 = "0pfqfr5xqgsqkxzrmj8xl2glyl4nbq0irs0k6ik7iy3gd3mxf5g1";
15 buildInputs = [ keyutils ];
16 checkInputs = [ pytest pytestrunner ];
19 description = "A set of python bindings for keyutils";
20 homepage = "https://github.com/sassoftware/python-keyutils";
21 license = lib.licenses.asl20;
22 maintainers = with lib.maintainers; [ primeos ];