pythonPackages.setuptools-lint: init at 0.6.0
This commit is contained in:
parent
b3499b7b40
commit
b772cd3a0c
2 changed files with 23 additions and 0 deletions
21
pkgs/development/python-modules/setuptools-lint/default.nix
Normal file
21
pkgs/development/python-modules/setuptools-lint/default.nix
Normal file
|
@ -0,0 +1,21 @@
|
|||
{ stdenv, buildPythonPackage, fetchPypi, pylint }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "setuptools-lint";
|
||||
version = "0.6.0";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "16a1ac5n7k7sx15cnk03gw3fmslab3a7m74dc45rgpldgiff3577";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ pylint ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Package to expose pylint as a lint command into setup.py";
|
||||
homepage = "https://github.com/johnnoone/setuptools-pylint";
|
||||
license = licenses.bsdOriginal;
|
||||
maintainers = with maintainers; [ nickhu ];
|
||||
};
|
||||
}
|
||||
|
|
@ -3439,6 +3439,8 @@ in {
|
|||
|
||||
setuptools-git = callPackage ../development/python-modules/setuptools-git { };
|
||||
|
||||
setuptools-lint = callPackage ../development/python-modules/setuptools-lint { };
|
||||
|
||||
sievelib = callPackage ../development/python-modules/sievelib { };
|
||||
|
||||
watchdog = callPackage ../development/python-modules/watchdog { };
|
||||
|
|
Loading…
Reference in a new issue