blob: a4d3c49742435572eb1d31e254fc99623bffb6d0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
{
lib,
buildPythonPackage,
fetchPypi,
git,
gitpython,
krb5-c, # C krb5 library, not PyPI krb5
mock,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "cccolutils";
version = "1.5";
format = "setuptools";
src = fetchPypi {
pname = "CCColUtils";
inherit version;
hash = "sha256-YzKjG43biRbTZKtzSUHHhtzOfcZfzISHDFolqzrBjL8=";
};
buildInputs = [ krb5-c ];
propagatedBuildInputs = [
git
gitpython
mock
];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "cccolutils" ];
meta = {
description = "Python Kerberos 5 Credential Cache Collection Utilities";
homepage = "https://pagure.io/cccolutils";
license = lib.licenses.gpl2Plus;
maintainers = with lib.maintainers; [ disassembler ];
};
}
|