summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/openshift/default.nix
blob: 06d53827e0f74cd588c5abdbe07a9cb81c23fc6d (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
{
  lib,
  buildPythonPackage,
  fetchFromGitHub,
  jinja2,
  kubernetes,
  ruamel-yaml,
  six,
  python-string-utils,
  pytest-bdd,
  pytest-cov-stub,
  pytestCheckHook,
}:

buildPythonPackage rec {
  pname = "openshift";
  version = "0.13.2";
  format = "setuptools";

  src = fetchFromGitHub {
    owner = "openshift";
    repo = "openshift-restclient-python";
    tag = "v${version}";
    hash = "sha256-uLfewj7M8KNs3oL1AM18sR/WhAR2mvBfqadyhR73FP0=";
  };

  pythonRelaxDeps = [ "kubernetes" ];

  propagatedBuildInputs = [
    jinja2
    kubernetes
    python-string-utils
    ruamel-yaml
    six
  ];

  pythonImportsCheck = [ "openshift" ];

  nativeCheckInputs = [
    pytest-bdd
    pytest-cov-stub
    pytestCheckHook
  ];

  disabledTestPaths = [
    # requires kubeconfig
    "test/integration"
  ];

  meta = {
    description = "Python client for the OpenShift API";
    homepage = "https://github.com/openshift/openshift-restclient-python";
    license = lib.licenses.asl20;
    maintainers = with lib.maintainers; [ teto ];
  };
}