blob: 72578e1825a1dbf4721377e70a8bb4d0872d18d8 (
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
{ lib
, buildPythonPackage
, fetchFromGitHub
, jinja2
, kubernetes
, ruamel-yaml
, six
, python-string-utils
, pytest-bdd
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "openshift";
version = "0.13.1";
src = fetchFromGitHub {
owner = "openshift";
repo = "openshift-restclient-python";
rev = "v${version}";
hash = "sha256-9mMHih2xuQve8hEnc5x4f9Pd4wX7IMy3vrxxGFCG+8o=";
};
postPatch = ''
substituteInPlace requirements.txt \
--replace "kubernetes ~= 12.0" "kubernetes"
sed -i '/--cov/d' setup.cfg
'';
propagatedBuildInputs = [
jinja2
kubernetes
python-string-utils
ruamel-yaml
six
];
pythonImportsCheck = ["openshift"];
nativeCheckInputs = [
pytest-bdd
pytestCheckHook
];
disabledTestPaths = [
# requires kubeconfig
"test/integration"
];
meta = with lib; {
description = "Python client for the OpenShift API";
homepage = "https://github.com/openshift/openshift-restclient-python";
license = licenses.asl20;
maintainers = with maintainers; [ teto ];
};
}
|