depot/third_party/nixpkgs/pkgs/development/python-modules/openshift/default.nix
Default email 9405df4a82 Project import generated by Copybara.
GitOrigin-RevId: 8e4fe32876ca15e3d5eb3ecd3ca0b224417f5f17
2021-04-26 15:14:03 -04:00

39 lines
753 B
Nix

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