Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / oslotest / default.nix
blob7d89f5778c732e5a65af43ebeb53d598342cb421
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , fixtures
5 , pbr
6 , six
7 , subunit
8 , callPackage
9 }:
11 buildPythonPackage rec {
12   pname = "oslotest";
13   version = "4.5.0";
14   format = "setuptools";
16   src = fetchPypi {
17     inherit pname version;
18     sha256 = "360ad2c41ba3ad6f059c7c6e7291450d082c2e5dbb0012e839a829978053dfe6";
19   };
21   nativeBuildInputs = [ pbr ];
23   propagatedBuildInputs = [
24     fixtures
25     six
26     subunit
27   ];
29   # check in passthru.tests.pytest to escape infinite recursion with other oslo components
30   doCheck = false;
32   passthru.tests = {
33     tests = callPackage ./tests.nix {};
34   };
36   pythonImportsCheck = [ "oslotest" ];
38   meta = with lib; {
39     description = "Oslo test framework";
40     homepage = "https://github.com/openstack/oslotest";
41     license = licenses.asl20;
42     maintainers = teams.openstack.members;
43   };