blob: 208f24c2b2bf98bd8e8f3cae8aa91b746879a3bb (
plain) (
blame)
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
42
43
44
45
46
47
48
|
{
lib,
buildPythonPackage,
fetchPypi,
findutils,
krb5-c,
pythonOlder,
setuptools,
substituteAll,
}:
buildPythonPackage rec {
pname = "k5test";
version = "0.10.4";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-4VJJHmYC9qk7PVM9OHvUWQ8kdgk7aEIXD/C5PeZL7zA=";
};
patches = [
(substituteAll {
src = ./fix-paths.patch;
inherit findutils;
krb5 = krb5-c;
# krb5-config is in dev output
krb5Dev = krb5-c.dev;
})
];
nativeBuildInputs = [ setuptools ];
# No tests
doCheck = false;
pythonImportsCheck = [ "k5test" ];
meta = with lib; {
description = "Library for setting up self-contained Kerberos 5 environment";
homepage = "https://github.com/pythongssapi/k5test";
changelog = "https://github.com/pythongssapi/k5test/releases/tag/v${version}";
license = licenses.mit;
maintainers = [ ];
};
}
|