Merge pull request #119960 from teto/openshift

python3Packages.openshift: init at 0.12.0
This commit is contained in:
Luke Granger-Brown 2021-04-25 14:13:17 +01:00 committed by GitHub
commit 6e9671b6cb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 70 additions and 0 deletions

View 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 ];
};
}

View file

@ -0,0 +1,27 @@
{ lib
, buildPythonPackage
, fetchPypi
, pytest
}:
buildPythonPackage rec {
pname = "python-string-utils";
version = "1.0.0";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-3PkGCwPwdkfApgNAjciwP4B/O1SgXG4Z6xRGAlb6wMs=";
};
pythonImportsCheck = ["string_utils"];
# tests are not available in pypi tarball
doCheck = false;
meta = with lib; {
description = "A handy Python library to validate, manipulate and generate strings.";
homepage = "https://github.com/daveoncode/python-string-utils";
license = licenses.mit;
maintainers = with maintainers; [ teto ];
};
}

View file

@ -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 { };
@ -6359,6 +6361,8 @@ in {
pytest-shutil = callPackage ../development/python-modules/pytest-shutil { };
python-string-utils = callPackage ../development/python-modules/python-string-utils { };
pytest-socket = callPackage ../development/python-modules/pytest-socket { };
pytest-subtesthack = callPackage ../development/python-modules/pytest-subtesthack { };