python3Packages.openshift: init at 0.12.0
it is used in the kubernetes ansible module Apply suggestions from code review Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
This commit is contained in:
parent
b929d94a75
commit
b02d4a38d9
39
pkgs/development/python-modules/openshift/default.nix
Normal file
39
pkgs/development/python-modules/openshift/default.nix
Normal file
@ -0,0 +1,39 @@
|
||||
{
|
||||
lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, jinja2
|
||||
, kubernetes
|
||||
, ruamel-yaml
|
||||
, six
|
||||
, python-string-utils
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "openshift";
|
||||
version = "0.12.0";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "sha256-aggRnD4goiZJPp4cngp8AIrJC/V46378cwUSfq8Xml4=";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
jinja2
|
||||
kubernetes
|
||||
python-string-utils
|
||||
ruamel-yaml
|
||||
six
|
||||
];
|
||||
|
||||
# tries to connect to the network
|
||||
doCheck = false;
|
||||
pythonImportsCheck = ["openshift"];
|
||||
|
||||
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 ];
|
||||
};
|
||||
}
|
@ -4624,6 +4624,8 @@ in {
|
||||
|
||||
opensensemap-api = callPackage ../development/python-modules/opensensemap-api { };
|
||||
|
||||
openshift = callPackage ../development/python-modules/openshift { };
|
||||
|
||||
opentimestamps = callPackage ../development/python-modules/opentimestamps { };
|
||||
|
||||
opentracing = callPackage ../development/python-modules/opentracing { };
|
||||
|
Loading…
Reference in New Issue
Block a user