12 buildPythonPackage rec {
17 disabled = pythonOlder "3.8";
20 inherit pname version;
21 hash = "sha256-8Pu2C85lEarYfuBzbFAkVnN0kKgtkZpE5tkiYss18cI=";
25 substituteInPlace setup.cfg \
26 --replace " --cov vulture --cov-report=html --cov-report=term --cov-report=xml --cov-append" ""
33 propagatedBuildInputs = lib.optionals (pythonOlder "3.11") [
43 pythonImportsCheck = [
48 description = "Finds unused code in Python programs";
49 mainProgram = "vulture";
50 homepage = "https://github.com/jendrikseipp/vulture";
51 changelog = "https://github.com/jendrikseipp/vulture/releases/tag/v${version}";
52 license = licenses.mit;
53 maintainers = with maintainers; [ mcwitt ];