emacs-bug-tracker
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

bug#60436: closed ([PATCH] gnu: Add python-setuptools-lint.)


From: GNU bug Tracking System
Subject: bug#60436: closed ([PATCH] gnu: Add python-setuptools-lint.)
Date: Mon, 06 Feb 2023 07:06:01 +0000

Your message dated Mon, 06 Feb 2023 15:06:06 +0800
with message-id <874jrzmfxd.fsf@envs.net>
and subject line Re: bug#60436: [PATCH] gnu: Add python-setuptools-lint.
has caused the debbugs.gnu.org bug report #60436,
regarding [PATCH] gnu: Add python-setuptools-lint.
to be marked as done.

(If you believe you have received this mail in error, please contact
help-debbugs@gnu.org.)


-- 
60436: https://debbugs.gnu.org/cgi/bugreport.cgi?bug=60436
GNU Bug Tracking System
Contact help-debbugs@gnu.org with problems
--- Begin Message --- Subject: [PATCH] gnu: Add python-setuptools-lint. Date: Fri, 30 Dec 2022 16:42:02 -0500
* gnu/packages/check.scm: (python-setuptools-lint) New variable.
---
 gnu/packages/check.scm | 17 +++++++++++++++++
 1 file changed, 17 insertions(+)

diff --git a/gnu/packages/check.scm b/gnu/packages/check.scm
index aaa41777dc..7c351fb1ac 100644
--- a/gnu/packages/check.scm
+++ b/gnu/packages/check.scm
@@ -2672,6 +2672,23 @@ (define-public python-pylint
 possible to write plugins to add your own checks.")
     (license license:gpl2+)))
 
+(define-public python-setuptools-lint
+  (package
+    (name "python-setuptools-lint")
+    (version "0.6.0")
+    (source (origin
+              (method url-fetch)
+              (uri (pypi-uri "setuptools-lint" version))
+              (sha256
+               (base32
+                "16a1ac5n7k7sx15cnk03gw3fmslab3a7m74dc45rgpldgiff3577"))))
+    (build-system python-build-system)
+    (propagated-inputs (list python-pylint))
+    (home-page "https://github.com/johnnoone/setuptools-pylint";)
+    (synopsis "Setuptools command for pylint")
+    (description "Setuptools command for pylint")
+    (license license:bsd-3)))
+
 (define-public python-paramunittest
   (package
     (name "python-paramunittest")
-- 
2.38.1




--- End Message ---
--- Begin Message --- Subject: Re: bug#60436: [PATCH] gnu: Add python-setuptools-lint. Date: Mon, 06 Feb 2023 15:06:06 +0800 User-agent: Gnus/5.13 (Gnus v5.13) Emacs/28.2 (gnu/linux)
Brian Cully <bjc@spork.org> writes:

> * gnu/packages/check.scm: (python-setuptools-lint) New variable.

Applied with adjusted synopsis and description:
--8<---------------cut here---------------start------------->8---
-    (synopsis "Setuptools command for pylint")
-    (description "Setuptools command for pylint")
+    (synopsis "Run pylint with @command{python setup.py lint}")
+    (description "This package expose pylint as a lint command into
+setup.py.")
--8<---------------cut here---------------end--------------->8---

Thank you!


--- End Message ---

reply via email to

[Prev in Thread] Current Thread [Next in Thread]