about summary refs log tree commit diff
path: root/pkgs/development/python-modules/vulture/default.nix
blob: 7ab5bcbb65bc0a5666b3e4a7f10937b0116b378f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{ lib
, buildPythonPackage
, coverage
, fetchPypi
, isPy27
, pytest-cov
, pytestCheckHook
, toml
}:

buildPythonPackage rec {
  pname = "vulture";
  version = "2.3";
  disabled = isPy27;

  src = fetchPypi {
    inherit pname version;
    sha256 = "0ryrmsm72z3fzaanyblz49q40h9d3bbl4pspn2lvkkp9rcmsdm83";
  };

  propagatedBuildInputs = [ toml ];

  checkInputs = [
    coverage
    pytest-cov
    pytestCheckHook
  ];

  pythonImportsCheck = [ "vulture" ];

  meta = with lib; {
    description = "Finds unused code in Python programs";
    homepage = "https://github.com/jendrikseipp/vulture";
    license = licenses.mit;
    maintainers = with maintainers; [ mcwitt ];
  };
}