diff options
| author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2026-05-18 16:54:08 +0100 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2026-05-18 16:54:08 +0100 |
| commit | 09199a0672f487fcf85d0e0b8a4786da287ab7d2 (patch) | |
| tree | 92bcb8c668389b13dce727f53c19d5d821aa8973 | |
| parent | 9f4c8d5a570ae331dcb055424b6d047a4c9739f2 (diff) | |
gnu: Add python-rich-rst.
* gnu/packages/python-xyz.scm (python-rich-rst): New variable.
Change-Id: Iebfdbc7b3659b09a0038d661b007f54aaf81a217
| -rw-r--r-- | gnu/packages/python-xyz.scm | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 766859a7c8..aa5128c150 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -2741,6 +2741,34 @@ edit distance algorithm for Python in Cython for high performance.") requiring minimal changes to the code.") (license license:expat))) +(define-public python-rich-rst + (package + (name "python-rich-rst") + (version "2.0.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/wasi-master/rich-rst") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1in5rjzgxyjaqj1vqq8mrcwxxm00whqd2bw8lqs717alxw3f4ygf")))) + (build-system pyproject-build-system) + (native-inputs + (list python-pytest + python-setuptools)) + (propagated-inputs + (list python-pygments + python-rich)) + (home-page "https://wasi-master.github.io/rich-rst") + (synopsis "Beautiful reStructuredText renderer for Rich") + (description + "This package turns @url{https://docutils.sourceforge.io/rst.html, reST} +documents into @url{https://rich.readthedocs.io/en/latest/, Rich} +renderables.") + (license license:expat))) + (define-public python-roman-numerals (package (name "python-roman-numerals") |
