mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-28 06:14:26 +03:00
pythonPackages.vulture: init at 1.6
This commit is contained in:
parent
b33e3ac8cd
commit
00501bd134
21
pkgs/development/python-modules/vulture/default.nix
Normal file
21
pkgs/development/python-modules/vulture/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user