Merge pull request #172087 from SuperSandro2000/pylint
pylint: add top-level package, update meta
This commit is contained in:
commit
7fbfccbc70
2 changed files with 12 additions and 1 deletions
|
@ -87,7 +87,16 @@ buildPythonPackage rec {
|
|||
meta = with lib; {
|
||||
homepage = "https://pylint.pycqa.org/";
|
||||
description = "A bug and style checker for Python";
|
||||
longDescription = ''
|
||||
Pylint is a Python static code analysis tool which looks for programming errors,
|
||||
helps enforcing a coding standard, sniffs for code smells and offers simple
|
||||
refactoring suggestions.
|
||||
Pylint is shipped with following additional commands:
|
||||
- pyreverse: an UML diagram generator
|
||||
- symilar: an independent similarities checker
|
||||
- epylint: Emacs and Flymake compatible Pylint
|
||||
'';
|
||||
license = licenses.gpl1Plus;
|
||||
maintainers = with maintainers; [ ];
|
||||
maintainers = with maintainers; [ totoroot ];
|
||||
};
|
||||
}
|
||||
|
|
|
@ -9582,6 +9582,8 @@ with pkgs;
|
|||
|
||||
pyinfra = with python3Packages; toPythonApplication pyinfra;
|
||||
|
||||
pylint = with python3Packages; toPythonApplication pylint;
|
||||
|
||||
pympress = callPackage ../applications/office/pympress { };
|
||||
|
||||
pyspread = libsForQt5.callPackage ../applications/office/pyspread { };
|
||||
|
|
Loading…
Reference in a new issue