[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#70400] [PATCH 1/7] gnu: Add python-docstring-to-markdown.
From: |
Jonathan Pieper |
Subject: |
[bug#70400] [PATCH 1/7] gnu: Add python-docstring-to-markdown. |
Date: |
Mon, 15 Apr 2024 19:45:04 +0200 |
* gnu/packages/python-xyz.scm (python-docstring-to-markdown): New variable.
---
gnu/packages/python-xyz.scm | 19 +++++++++++++++++++
1 file changed, 19 insertions(+)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 92566abfed..9521119a84 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -1376,6 +1376,25 @@ (define-public python-mkdocs-markdownextradata-plugin
variables into the markdown template")
(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 python-build-system)
+ (home-page "https://github.com/python-lsp/docstring-to-markdown")
+ (synopsis "On the fly conversion of Python docstrings to markdown")
+ (description
+ "This module can convert Python docstrings to Markdown.
+It can recognise reStructuredText inside docstrings and convert multiple of its
+features to Markdown. It also includes initial support for Google-formatted
docstrings.")
+ (license license:lgpl2.1+)))
+
(define-public python-mysql-connector-python
(package
(name "python-mysql-connector-python")
base-commit: 6b3c90f638292f9604a221ac6dbf22234f6e4c4b
--
2.41.0
- [bug#70400] [PATCH] Update python-lsp-server, Jonathan Pieper, 2024/04/15
- [bug#70400] [PATCH 1/7] gnu: Add python-docstring-to-markdown.,
Jonathan Pieper <=
- [bug#70400] [PATCH 4/7] gnu: python-snowballstemmer: Update to 2.2.0., Jonathan Pieper, 2024/04/15
- [bug#70400] [PATCH 2/7] gnu: Add python-pytoolconfig., Jonathan Pieper, 2024/04/15
- [bug#70400] [PATCH 5/7] gnu: python-pydocstyle: Update to 6.3.0., Jonathan Pieper, 2024/04/15
- [bug#70400] [PATCH 7/7] gnu: python-lsp-server: Update to 1.11.0., Jonathan Pieper, 2024/04/15
- [bug#70400] [PATCH 3/7] gnu: python-lsp-jsonrpc: Update to 1.1.2., Jonathan Pieper, 2024/04/15
- [bug#70400] [PATCH 6/7] gnu: python-rope: Update to 1.13.0., Jonathan Pieper, 2024/04/15