guix-commits
[Top][All Lists]
Advanced

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

01/05: gnu: Add python-docstring-to-markdown.


From: guix-commits
Subject: 01/05: gnu: Add python-docstring-to-markdown.
Date: Wed, 8 May 2024 06:08:55 -0400 (EDT)

rekado pushed a commit to branch python-team
in repository guix.

commit ba187721f6c0fd8a43fbbda5d68ab3d82b899460
Author: Ricardo Wurmus <rekado@elephly.net>
AuthorDate: Wed May 8 11:40:10 2024 +0200

    gnu: Add python-docstring-to-markdown.
    
    * gnu/packages/python-xyz.scm (python-docstring-to-markdown): New variable.
    
    Change-Id: Ie5497955262072201e5d78c7065da6569847b304
---
 gnu/packages/python-xyz.scm | 18 ++++++++++++++++++
 1 file changed, 18 insertions(+)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index a10066d57c..ecdc990bad 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -6925,6 +6925,24 @@ used to convert between several docstring styles.")
 Google and Numpydoc format.")
     (license license:expat)))
 
+(define-public python-docstring-to-markdown
+  (package
+    (name "python-docstring-to-markdown")
+    (version "0.15")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (pypi-uri "docstring-to-markdown" version))
+       (sha256
+        (base32 "0gdpabnyl1kyy0cjrnph6xl4fyhgim50a1amsaqq3hahki6i2ip1"))))
+    (build-system pyproject-build-system)
+    (native-inputs (list python-setuptools python-wheel))
+    (home-page "https://pypi.org/project/docstring-to-markdown/";)
+    (synopsis "On the fly conversion of Python docstrings to markdown")
+    (description "This is a package for on the fly conversion of Python
+docstrings to markdown.")
+    (license license:lgpl2.1+)))
+
 (define-public python-docutils
   (package
     (name "python-docutils")



reply via email to

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