mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-18 13:19:10 +03:00
pythonPackages.keyutils: init at 0.5
This commit is contained in:
parent
d757d8142e
commit
b8915ebcc7
@ -10859,6 +10859,28 @@ in {
|
||||
|
||||
keyring = callPackage ../development/python-modules/keyring { };
|
||||
|
||||
keyutils = buildPythonPackage rec {
|
||||
name = "${pname}-${version}";
|
||||
pname = "keyutils";
|
||||
version = "0.5";
|
||||
|
||||
src = pkgs.fetchurl {
|
||||
url = "mirror://pypi/k/${pname}/${name}.tar.gz";
|
||||
sha256 = "0dskys71vkn59vlsfs1ljli0qnzk7b10iv4pawxawnk2hvyjrf10";
|
||||
};
|
||||
|
||||
buildInputs = with self; [ pkgs.keyutils pytestrunner ];
|
||||
|
||||
doCheck = false;
|
||||
|
||||
meta = {
|
||||
description = "A set of python bindings for keyutils";
|
||||
homepage = https://github.com/sassoftware/python-keyutils;
|
||||
license = licenses.asl20;
|
||||
maintainers = with maintainers; [ primeos ];
|
||||
};
|
||||
};
|
||||
|
||||
klaus = buildPythonPackage rec {
|
||||
version = "0.9.1";
|
||||
name = "klaus-${version}";
|
||||
|
Loading…
Reference in New Issue
Block a user