diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2024-05-08 11:40:10 +0200 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-10-14 21:34:32 +0100 |
commit | f6d233886138656d5d6f0fca8cd9005c160826fa (patch) | |
tree | 8513fb416f6e11e7195e7bf9462967ecabcdfcaf /gnu/packages/python-xyz.scm | |
parent | a7b0014fc60043ee70c8baa867b9e7a2488259ad (diff) |
gnu: Add python-docstring-to-markdown.
* gnu/packages/python-xyz.scm (python-docstring-to-markdown): New variable.
Change-Id: Ie5497955262072201e5d78c7065da6569847b304
Diffstat (limited to 'gnu/packages/python-xyz.scm')
-rw-r--r-- | gnu/packages/python-xyz.scm | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 7a519c5448..d045f8a349 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -7136,6 +7136,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") |