2024-06-05 15:53:02 +00:00
|
|
|
{
|
|
|
|
lib,
|
|
|
|
buildPythonPackage,
|
|
|
|
fetchFromGitHub,
|
|
|
|
jinja2,
|
|
|
|
kubernetes,
|
|
|
|
ruamel-yaml,
|
|
|
|
six,
|
|
|
|
python-string-utils,
|
|
|
|
pytest-bdd,
|
|
|
|
pytestCheckHook,
|
2021-04-26 19:14:03 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "openshift";
|
2023-08-04 22:07:22 +00:00
|
|
|
version = "0.13.2";
|
2024-01-02 11:29:13 +00:00
|
|
|
format = "setuptools";
|
2021-04-26 19:14:03 +00:00
|
|
|
|
2021-09-26 12:46:18 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "openshift";
|
|
|
|
repo = "openshift-restclient-python";
|
2023-08-04 22:07:22 +00:00
|
|
|
rev = "refs/tags/v${version}";
|
|
|
|
hash = "sha256-uLfewj7M8KNs3oL1AM18sR/WhAR2mvBfqadyhR73FP0=";
|
2021-04-26 19:14:03 +00:00
|
|
|
};
|
|
|
|
|
2021-09-26 12:46:18 +00:00
|
|
|
postPatch = ''
|
|
|
|
substituteInPlace requirements.txt \
|
|
|
|
--replace "kubernetes ~= 12.0" "kubernetes"
|
|
|
|
|
|
|
|
sed -i '/--cov/d' setup.cfg
|
|
|
|
'';
|
|
|
|
|
2021-04-26 19:14:03 +00:00
|
|
|
propagatedBuildInputs = [
|
|
|
|
jinja2
|
|
|
|
kubernetes
|
|
|
|
python-string-utils
|
|
|
|
ruamel-yaml
|
|
|
|
six
|
|
|
|
];
|
|
|
|
|
2024-06-05 15:53:02 +00:00
|
|
|
pythonImportsCheck = [ "openshift" ];
|
2021-04-26 19:14:03 +00:00
|
|
|
|
2023-02-02 18:25:31 +00:00
|
|
|
nativeCheckInputs = [
|
2021-09-26 12:46:18 +00:00
|
|
|
pytest-bdd
|
|
|
|
pytestCheckHook
|
|
|
|
];
|
|
|
|
|
|
|
|
disabledTestPaths = [
|
2022-05-18 14:49:53 +00:00
|
|
|
# requires kubeconfig
|
|
|
|
"test/integration"
|
2021-09-26 12:46:18 +00:00
|
|
|
];
|
|
|
|
|
2021-04-26 19:14:03 +00:00
|
|
|
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 ];
|
|
|
|
};
|
|
|
|
}
|