summary refs log tree commit diff
path: root/pkgs/development/python-modules/os-service-types/default.nix
blob: 147685fb2b91ba14a46dc26ef1193be330ff77b7 (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
{ lib
, buildPythonPackage
, fetchPypi
, pbr
, six
, callPackage
}:

buildPythonPackage rec {
  pname = "os-service-types";
  version = "1.7.0";

  src = fetchPypi {
    inherit pname version;
    sha256 = "31800299a82239363995b91f1ebf9106ac7758542a1e4ef6dc737a5932878c6c";
  };

  postPatch = ''
    # only a small portion of the listed packages are actually needed for running the tests
    # so instead of removing them one by one remove everything
    rm test-requirements.txt
  '';

  propagatedBuildInputs = [ pbr six ];

  # check in passthru.tests.pytest to escape infinite recursion with other oslo components
  doCheck = false;

  passthru.tests = {
    tests = callPackage ./tests.nix { };
  };

  pythonImportsCheck = [ "os_service_types" ];

  meta = with lib; {
    description = "Python library for consuming OpenStack sevice-types-authority data";
    homepage = "https://github.com/openstack/os-service-types";
    license = licenses.asl20;
    maintainers = teams.openstack.members;
  };
}