1 { lib, buildPythonPackage, fetchPypi, pbr, six, wrapt, callPackage }:
3 buildPythonPackage rec {
4 pname = "debtcollector";
9 hash = "sha256-3J0a0/dFxD9LvtvKMPn/6JBajAKMmSbmEHeEfV6iV6s=";
12 nativeBuildInputs = [ pbr ];
14 propagatedBuildInputs = [ six wrapt ];
16 # check in passthru.tests.pytest to escape infinite recursion with other oslo components
20 tests = callPackage ./tests.nix { };
23 pythonImportsCheck = [ "debtcollector" ];
26 description = "A collection of Python deprecation patterns and strategies that help you collect your technical debt in a non-destructive manner";
27 homepage = "https://github.com/openstack/debtcollector";
28 license = licenses.asl20;
29 maintainers = teams.openstack.members;