Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / debtcollector / default.nix
blob14fdff4243caf44a55df5a51f9ff128ef2d96c45
1 { lib, buildPythonPackage, fetchPypi, pbr, six, wrapt, callPackage }:
3 buildPythonPackage rec {
4   pname = "debtcollector";
5   version = "3.0.0";
6   format = "setuptools";
8   src = fetchPypi {
9     inherit pname version;
10     hash = "sha256-KokX0lsOHx0NNl08HG7Px6UiselxbooaSpFRJvfM6m8=";
11   };
13   nativeBuildInputs = [ pbr ];
15   propagatedBuildInputs = [ six wrapt ];
17   # check in passthru.tests.pytest to escape infinite recursion with other oslo components
18   doCheck = false;
20   passthru.tests = {
21     tests = callPackage ./tests.nix { };
22   };
24   pythonImportsCheck = [ "debtcollector" ];
26   meta = with lib; {
27     description = "A collection of Python deprecation patterns and strategies that help you collect your technical debt in a non-destructive manner";
28     homepage = "https://github.com/openstack/debtcollector";
29     license = licenses.asl20;
30     maintainers = teams.openstack.members;
31   };