From 16e2b76b1a5a8b0ee8007881f41432dc5319f9ae Mon Sep 17 00:00:00 2001 From: Matthias Thym Date: Wed, 4 May 2022 11:29:44 +0200 Subject: [PATCH 1/3] pylint: add top-level package --- pkgs/top-level/all-packages.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 9f5fd509e3e..f2891a461ec 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -9578,6 +9578,8 @@ with pkgs; pyinfra = with python3Packages; toPythonApplication pyinfra; + pylint = with python3Packages; toPythonApplication pylint; + pympress = callPackage ../applications/office/pympress { }; pyspread = libsForQt5.callPackage ../applications/office/pyspread { }; From 0596c29b4a60e5c2f764b2d3e0873c4dbeadfb8b Mon Sep 17 00:00:00 2001 From: Matthias Thym Date: Wed, 4 May 2022 11:30:14 +0200 Subject: [PATCH 2/3] pylint: add totoroot as maintainer --- pkgs/development/python-modules/pylint/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/pylint/default.nix b/pkgs/development/python-modules/pylint/default.nix index dda915bb7ef..db6606945a7 100644 --- a/pkgs/development/python-modules/pylint/default.nix +++ b/pkgs/development/python-modules/pylint/default.nix @@ -88,6 +88,6 @@ buildPythonPackage rec { homepage = "https://pylint.pycqa.org/"; description = "A bug and style checker for Python"; license = licenses.gpl1Plus; - maintainers = with maintainers; [ ]; + maintainers = with maintainers; [ totoroot ]; }; } From 8655fac3536ba3564daf95544a22dd70c1dfb335 Mon Sep 17 00:00:00 2001 From: Matthias Thym Date: Wed, 4 May 2022 14:18:21 +0200 Subject: [PATCH 3/3] 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 ]; };