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
84
85
86
|
{
lib,
fetchFromGitHub,
buildPythonPackage,
pytestCheckHook,
setuptools,
setuptools-scm,
pyyaml,
aiohttp,
iso8601,
python-json-logger,
clickclick,
typing-extensions,
pytest-mock,
pytest-timeout,
pytest-asyncio,
pyngrok,
freezegun,
certvalidator,
aresponses,
}:
buildPythonPackage rec {
pname = "kopf";
version = "1.38.0";
pyproject = true;
src = fetchFromGitHub {
owner = "nolar";
repo = "kopf";
tag = version;
hash = "sha256-H2Q5nDIODp2VFtMIJ0g8b+/SMZzLueRGBkh1g6LBbgc=";
};
build-system = [
setuptools
setuptools-scm
];
dependencies = [
pyyaml
python-json-logger
aiohttp
iso8601
clickclick
typing-extensions
];
nativeCheckInputs = [
pytestCheckHook
pyngrok
pytest-timeout
pytest-asyncio
pytest-mock
freezegun
certvalidator
aresponses
];
disabledTestPaths = [
# Module astpath unavailable in nixpkgs
"tests/admission/test_certificates.py"
"tests/e2e/test_examples.py"
#Module certbuilder unavailable in nixpkgs
"tests/admission/test_webhook_detection.py"
"tests/admission/test_webhook_ngrok.py"
"tests/admission/test_webhook_server.py"
];
__darwinAllowLocalNetworking = true;
pythonImportsCheck = [
"kopf"
];
meta = {
description = "Python framework to write Kubernetes operators";
homepage = "https://kopf.readthedocs.io/";
changelog = "https://github.com/nolar/kopf/releases/tag/${src.tag}";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ genga898 ];
};
}
|