1 { lib, buildPythonPackage, fetchPypi, pbr, six, wrapt, callPackage }:
3 buildPythonPackage rec {
4 pname = "debtcollector";
10 hash = "sha256-KokX0lsOHx0NNl08HG7Px6UiselxbooaSpFRJvfM6m8=";
13 nativeBuildInputs = [ pbr ];
15 propagatedBuildInputs = [ six wrapt ];
17 # check in passthru.tests.pytest to escape infinite recursion with other oslo components
21 tests = callPackage ./tests.nix { };
24 pythonImportsCheck = [ "debtcollector" ];
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;