guix-commits
[Top][All Lists]
Advanced

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

03/05: gnu: Add python-docrep.


From: guix-commits
Subject: 03/05: gnu: Add python-docrep.
Date: Thu, 11 May 2023 11:14:00 -0400 (EDT)

rekado pushed a commit to branch master
in repository guix.

commit 061693964192dea4ec6c2354142a2ad27f670669
Author: Ricardo Wurmus <rekado@elephly.net>
AuthorDate: Thu May 11 17:11:55 2023 +0200

    gnu: Add python-docrep.
    
    * gnu/packages/python-xyz.scm (python-docrep): New variable.
---
 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 5fe5b31979..e50a8b813d 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -583,6 +583,26 @@ and variables you'll need already imported and created.
 scipy and numpy of negative binomial maximum likelihood estimation.")
     (license license:gpl3+)))
 
+(define-public python-docrep
+  (package
+    (name "python-docrep")
+    (version "0.3.2")
+    (source (origin
+              (method url-fetch)
+              (uri (pypi-uri "docrep" version))
+              (sha256
+               (base32
+                "0523jrzjj29kxpdllmfhrfj9kysi9mphp2m7ippjkn5b07i1g2pd"))))
+    (build-system pyproject-build-system)
+    (propagated-inputs (list python-six))
+    (native-inputs (list python-pytest python-pytest-runner))
+    (home-page "https://github.com/Chilipp/docrep";)
+    (synopsis "Python package for docstring repetition")
+    (description "Docrep is the documentation repetition module.  This module
+targets developers that develop complex and nested Python APIs and helps them
+to create a well-documented piece of software.")
+    (license license:asl2.0)))
+
 (define-public python-dotmap
   (package
     (name "python-dotmap")



reply via email to

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