diff options
| author | Maxim Cournoyer <maxim@guixotic.coop> | 2025-12-04 14:41:46 +0900 |
|---|---|---|
| committer | Andreas Enge <andreas@enge.fr> | 2026-02-07 12:28:34 +0100 |
| commit | bc52952c95ac1a51afbb49e0218a0cec5e4e4808 (patch) | |
| tree | d0531f74e0e4bc468265f140768c5957b750f7f9 /gnu/packages | |
| parent | 321882346c56ae195b5069c1695746458754a21c (diff) | |
gnu: Add python-sphinx-tags.
* gnu/packages/sphinx.scm (python-sphinx-tags): New variable.
Change-Id: If4694b36b8f674e8a85799d224ef0ecda29922e9
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Diffstat (limited to 'gnu/packages')
| -rw-r--r-- | gnu/packages/sphinx.scm | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/gnu/packages/sphinx.scm b/gnu/packages/sphinx.scm index 05094d7aea4..87689593d63 100644 --- a/gnu/packages/sphinx.scm +++ b/gnu/packages/sphinx.scm @@ -52,6 +52,7 @@ #:use-module (gnu packages fonts) #:use-module (gnu packages fontutils) #:use-module (gnu packages graphviz) + #:use-module (gnu packages haskell-xyz) #:use-module (gnu packages image) #:use-module (gnu packages imagemagick) #:use-module (gnu packages jupyter) @@ -274,6 +275,32 @@ sources.") (texlive-local-tree (list texlive-anyfontsize texlive-cm-super texlive-tex-gyre)))))) +(define-public python-sphinx-tags + (package + (name "python-sphinx-tags") + (version "0.4") + (source + (origin + (method url-fetch) + (uri (pypi-uri "sphinx_tags" version)) + (sha256 + (base32 "179mlmql7nmwd12lqyrncx8klbxjcmb7s8zj0v3nfxglmjdj2r9h")))) + (build-system pyproject-build-system) + (propagated-inputs (list python-sphinx)) + (native-inputs + (list pandoc + python-beautifulsoup4 + python-flit-core + python-myst-parser + python-nbsphinx + python-pytest + python-sphinx-design)) + (home-page "https://sphinx-tags.readthedocs.io/en/latest/") + (synopsis "Sphinx extension to create tags") + (description "This package provides a Sphinx extension to +create tags for documentation pages.") + (license license:expat))) + (define-public python-sphinxcontrib-apidoc (package (name "python-sphinxcontrib-apidoc") |
