guix-commits
[Top][All Lists]
Advanced

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

08/09: gnu: Add python-docstyle.


From: guix-commits
Subject: 08/09: gnu: Add python-docstyle.
Date: Tue, 12 Feb 2019 17:30:35 -0500 (EST)

civodul pushed a commit to branch master
in repository guix.

commit 56f4ad47bde0f416b31433a8274e301ceda4bf42
Author: Brett Gilio <address@hidden>
Date:   Thu Feb 7 22:04:52 2019 -0600

    gnu: Add python-docstyle.
    
    * gnu/packages/python-xyz.scm (python-docstyle): New variable.
    
    Signed-off-by: Ludovic Courtès <address@hidden>
---
 gnu/packages/python-xyz.scm | 23 +++++++++++++++++++++++
 1 file changed, 23 insertions(+)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 959b464..55d2c26 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -2601,6 +2601,29 @@ Language (TOML) configuration files.")
      "This packages provides a JSON RPC 2.0 server library for Python.")
     (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
   (package
     (name "python-black")



reply via email to

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