about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/vulture/default.nix
blob: 76f379ef844934e5c7bd4fdae58bcb3a3a4d28c9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ stdenv, buildPythonPackage, fetchPypi, isPy27, coverage, pytest, pytestcov }:

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

  src = fetchPypi {
    inherit pname version;
    sha256 = "933bf7f3848e9e39ecab6a12faa59d5185471c887534abac13baea6fe8138cc2";
  };

  checkInputs = [ coverage pytest pytestcov ];
  checkPhase = "pytest";

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