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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
|
{
stdenv,
lib,
buildPythonPackage,
pythonOlder,
fetchFromGitHub,
# build-system
cython,
setuptools,
# dependencies
decorator,
# native dependencies
GSS,
krb5-c, # C krb5 library, not PyPI krb5
# tests
parameterized,
k5test,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "gssapi";
version = "1.8.3";
pyproject = true;
disabled = pythonOlder "3.6";
src = fetchFromGitHub {
owner = "pythongssapi";
repo = "python-${pname}";
rev = "refs/tags/v${version}";
hash = "sha256-H1JfdvxJvX5dmC9aTqIOkjAqFEL44KoUXEhoYj2uRY8=";
};
postPatch = ''
substituteInPlace setup.py \
--replace 'get_output(f"{kc} gssapi --prefix")' '"${lib.getDev krb5-c}"'
'';
env = lib.optionalAttrs (!stdenv.buildPlatform.canExecute stdenv.hostPlatform) {
GSSAPI_SUPPORT_DETECT = "false";
};
build-system = [
cython
krb5-c
setuptools
];
dependencies = [ decorator ];
buildInputs = lib.optionals stdenv.hostPlatform.isDarwin [ GSS ];
# k5test is marked as broken on darwin
doCheck = !stdenv.hostPlatform.isDarwin;
nativeCheckInputs = [
k5test
parameterized
pytestCheckHook
];
preCheck = ''
mv gssapi/tests $TMPDIR/
pushd $TMPDIR
'';
postCheck = ''
popd
'';
pythonImportsCheck = [ "gssapi" ];
meta = with lib; {
homepage = "https://pypi.python.org/pypi/gssapi";
description = "Python GSSAPI Wrapper";
license = licenses.mit;
};
}
|