depot/third_party/nixpkgs/pkgs/development/python-modules/vulture/default.nix
Default email 0eaa97ffad Project import generated by Copybara.
GitOrigin-RevId: c59ea8b8a0e7f927e7291c14ea6cd1bd3a16ff38
2020-08-20 19:08:02 +02:00

21 lines
561 B
Nix

{ stdenv, buildPythonPackage, fetchPypi, coverage, pytest, pytestcov }:
buildPythonPackage rec {
pname = "vulture";
version = "1.6";
src = fetchPypi {
inherit pname version;
sha256 = "1sbwbwkpk3s7iwnwsdrvj1ydw9lgbn3xqhji7f8y5y6vvr77i53v";
};
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 ];
};
}