pythonPackages.vulture: init at 1.6

This commit is contained in:
Matt Wittmann 2020-08-01 20:26:38 -07:00 committed by Jon
parent b33e3ac8cd
commit 00501bd134
2 changed files with 23 additions and 0 deletions

View file

@ -0,0 +1,21 @@
{ 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 ];
};
}

View file

@ -6714,6 +6714,8 @@ in {
vultr = callPackage ../development/python-modules/vultr { };
vulture = callPackage ../development/python-modules/vulture { };
wadllib = callPackage ../development/python-modules/wadllib { };
waitress = callPackage ../development/python-modules/waitress { };