diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2024-01-06 11:28:24 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2024-01-16 11:22:32 +0100 |
commit | db7ef77be1450211f2e2c408829c9d15f271d841 (patch) | |
tree | 66dbe98d7a51cb2dc58c41f0d7e5d1ee697b18bb /gnu/packages/python-xyz.scm | |
parent | 79d05aa7c06d9d34cd5bb213841c307fa0634bf5 (diff) |
gnu: Add python-pydevtool.
* gnu/packages/python-xyz.scm (python-pydevtool): New variable.
Change-Id: I325b81fa6421094a5a64084c06e66b8fa136e270
Diffstat (limited to 'gnu/packages/python-xyz.scm')
-rw-r--r-- | gnu/packages/python-xyz.scm | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 104a0c69a1..4a784d886a 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -32952,6 +32952,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") |