mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-02-04 18:07:24 +01:00
gnu: Add python-docstyle.
* gnu/packages/python-xyz.scm (python-docstyle): New variable. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
346c87522e
commit
56f4ad47bd
1 changed files with 23 additions and 0 deletions
|
@ -2601,6 +2601,29 @@ (define-public python-jsonrpc-server
|
||||||
"This packages provides a JSON RPC 2.0 server library for Python.")
|
"This packages provides a JSON RPC 2.0 server library for Python.")
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
|
(define-public python-pydocstyle
|
||||||
|
(package
|
||||||
|
(name "python-pydocstyle")
|
||||||
|
(version "3.0.0")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (pypi-uri "pydocstyle" version))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"1m1xv9clkg9lgzyza6dnj359z04vh5g0h49nhzghv7lg81gchhap"))))
|
||||||
|
(build-system python-build-system)
|
||||||
|
(propagated-inputs
|
||||||
|
`(("python-six" ,python-six)
|
||||||
|
("python-snowballstemmer" ,python-snowballstemmer)))
|
||||||
|
(home-page
|
||||||
|
"https://github.com/PyCQA/pydocstyle/")
|
||||||
|
(synopsis "Python docstring style checker")
|
||||||
|
(description
|
||||||
|
"This package provides a style checker for the Python Language
|
||||||
|
Server (PLS).")
|
||||||
|
(license license:expat)))
|
||||||
|
|
||||||
(define-public python-black
|
(define-public python-black
|
||||||
(package
|
(package
|
||||||
(name "python-black")
|
(name "python-black")
|
||||||
|
|
Loading…
Reference in a new issue