guix-commits
[Top][All Lists]
Advanced

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

05/47: gnu: Add python-pydevtool.


From: guix-commits
Subject: 05/47: gnu: Add python-pydevtool.
Date: Wed, 10 Jan 2024 13:53:20 -0500 (EST)

rekado pushed a commit to branch wip-python-science
in repository guix.

commit 856aaaacd3544d894db44fc6e9365daaaedf64fd
Author: Ricardo Wurmus <rekado@elephly.net>
AuthorDate: Sat Jan 6 11:28:24 2024 +0100

    gnu: Add python-pydevtool.
    
    * gnu/packages/python-xyz.scm (python-pydevtool): New variable.
    
    Change-Id: I325b81fa6421094a5a64084c06e66b8fa136e270
---
 gnu/packages/python-xyz.scm | 20 ++++++++++++++++++++
 1 file changed, 20 insertions(+)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 80e4f5237a..3475609c17 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -32785,6 +32785,26 @@ to:
      "This package provides a port of the serialize and unserialize functions 
of PHP for Python")
     (license license:bsd-3)))
 
+(define-public python-pydevtool
+  (package
+    (name "python-pydevtool")
+    (version "0.3.0")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (pypi-uri "pydevtool" version))
+       (sha256
+        (base32 "12pwhvvm4pgvfxj18ylb66drxm28b2cpb5rbxqrsrk1k7m7vmqr5"))))
+    (build-system pyproject-build-system)
+    (arguments (list #:tests? #false)) ;no tests
+    (propagated-inputs (list python-doit python-rich-click))
+    (home-page "https://github.com/pydoit/pydevtool";)
+    (synopsis "CLI dev tools powered by pydoit")
+    (description "This package provides command line tools, powered by pydoit.
+It offers integration with @code{click} and @code{rich} for custom CLI and
+these linters: @code{pycodestlye}, @code{pyflakes}")
+    (license license:expat)))
+
 (define-public nikola
   (package
     (name "nikola")



reply via email to

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