about summary refs log tree commit diff
path: root/pkgs/development/python-modules/osc-sdk-python/default.nix
blob: 74d617efe500809964b09d940cd0e53e1babee77 (plain) (blame)
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
57
{
  lib
  , buildPythonPackage
  , fetchFromGitHub
  , pytestCheckHook
  , requests
  , ruamel-yaml
  , setuptools
}:

buildPythonPackage rec {
  pname = "osc-sdk-python";
  version = "0.27.0";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "outscale";
    repo = "osc-sdk-python";
    rev = "v${version}";
    hash = "sha256-dp4yE8cTeXAPoixJ6ZtsvcTSKdYpDIebHkddUiqJe5Q=";
    fetchSubmodules = true;
  };

  nativeBuildInputs = [
    setuptools
  ];

  propagatedBuildInputs = [
    requests
    ruamel-yaml
  ];

  nativeCheckInputs = [
    pytestCheckHook
  ];

  postPatch = ''
    substituteInPlace setup.py \
      --replace "ruamel.yaml==0.17.32" "ruamel.yaml"
  '';

  # Only keep test not requiring access and secret keys
  pytestFlagsArray = [
    "tests/test_net.py"
  ];

  pythonImportsCheck = [
    "osc_sdk_python"
  ];

  meta = with lib; {
    description = "SDK to perform actions on Outscale API";
    homepage = "http://github.com/outscale/osc-sdk-python";
    license = licenses.bsd3;
    maintainers = with maintainers; [ nicolas-goudry ];
  };
}