From 113e412b8b0faa123fa70a0185da7e8b20ce41b7 Mon Sep 17 00:00:00 2001 From: Christopher Baines Date: Sat, 24 Mar 2018 10:56:50 +0000 Subject: gnu: Add python-pydocstyle. --- gnu/packages/python.scm | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index 381c686a39..5d21236d2f 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -15482,3 +15482,26 @@ class in a @acronym{DRY, Don't Repeat Yourself} way.") (synopsis "A linter for prose") (description "A linter for prose") (license license:bsd-3))) + +(define-public python-pydocstyle + (package + (name "python-pydocstyle") + (version "2.1.1") + (source + (origin + (method url-fetch) + (uri (pypi-uri "pydocstyle" version)) + (sha256 + (base32 + "15ssv8l6cvrmzgwcdzw76rnl4np3qf0dbwr1wsx76y0hc7lwsnsd")))) + (build-system python-build-system) + (propagated-inputs + `(("python-configparser" ,python-configparser) + ("python-six" ,python-six) + ("python-snowballstemmer" + ,python-snowballstemmer))) + (home-page + "https://github.com/PyCQA/pydocstyle/") + (synopsis "Python docstring style checker") + (description "Python docstring style checker") + (license license:expat))) -- cgit v1.2.3