From 8655fac3536ba3564daf95544a22dd70c1dfb335 Mon Sep 17 00:00:00 2001 From: Matthias Thym Date: Wed, 4 May 2022 14:18:21 +0200 Subject: [PATCH] pylint: add longDescription --- pkgs/development/python-modules/pylint/default.nix | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/pkgs/development/python-modules/pylint/default.nix b/pkgs/development/python-modules/pylint/default.nix index db6606945a7..263632e8654 100644 --- a/pkgs/development/python-modules/pylint/default.nix +++ b/pkgs/development/python-modules/pylint/default.nix @@ -87,6 +87,15 @@ 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; [ totoroot ]; };