diff options
author | Liliana Marie Prikler <liliana.prikler@gmail.com> | 2023-09-22 23:54:34 +0200 |
---|---|---|
committer | Liliana Marie Prikler <liliana.prikler@gmail.com> | 2023-09-22 23:54:34 +0200 |
commit | cdbd81ce144f17644ceebd3d08723aa244696a05 (patch) | |
tree | f2d4c484a5a8880fb32b81ac4330842c88a53e2a /gnu/packages/sphinx.scm | |
parent | 10664c0f1c351eae24629127d97fe23f5e18a93c (diff) | |
parent | ec130e1a1b7f3b87b1a6e626754f7e7a07f6b717 (diff) | |
download | guix-cdbd81ce144f17644ceebd3d08723aa244696a05.tar.gz guix-cdbd81ce144f17644ceebd3d08723aa244696a05.zip |
Merge branch 'master' into emacs-team
Diffstat (limited to 'gnu/packages/sphinx.scm')
-rw-r--r-- | gnu/packages/sphinx.scm | 28 |
1 files changed, 22 insertions, 6 deletions
diff --git a/gnu/packages/sphinx.scm b/gnu/packages/sphinx.scm index 173accd768..a7c437d6b4 100644 --- a/gnu/packages/sphinx.scm +++ b/gnu/packages/sphinx.scm @@ -3,7 +3,7 @@ ;;; Copyright © 2015, 2017, 2019, 2020, 2021, 2023 Ricardo Wurmus <rekado@elephly.net> ;;; Copyright © 2015, 2016, 2017 Leo Famulari <leo@famulari.name> ;;; Copyright © 2016 Hartmut Goebel <h.goebel@crazy-compilers.com> -;;; Copyright © 2016-2019, 2022 Marius Bakke <marius@gnu.org> +;;; Copyright © 2016-2019, 2022, 2023 Marius Bakke <marius@gnu.org> ;;; Copyright © 2017 Danny Milosavljevic <dannym+a@scratchpost.org> ;;; Copyright © 2017, 2018, 2020 Tobias Geerinckx-Rice <me@tobias.gr> ;;; Copyright © 2017 Frederick M. Muriithi <fredmanglis@gmail.com> @@ -204,6 +204,24 @@ sources.") Apple help books.") (license license:bsd-2))) +(define-public python-sphinx-basic-ng + (package + (name "python-sphinx-basic-ng") + (version "1.0.0b2") + (source (origin + (method url-fetch) + (uri (pypi-uri "sphinx_basic_ng" version)) + (sha256 + (base32 + "1jaihs22d8jfvk1fnv5j7hcza89hxj979ib0b4mh130cr53mmicy")))) + (build-system pyproject-build-system) + (propagated-inputs (list python-sphinx)) + (home-page "https://github.com/pradyunsg/sphinx-basic-ng") + (synopsis "Modernised skeleton for Sphinx themes") + (description + "This package provides a modern skeleton for Sphinx themes.") + (license license:expat))) + (define-public python-sphinx-click (package (name "python-sphinx-click") @@ -1068,19 +1086,17 @@ widgets, and supports thebelab for live code execution with minimal effort.") (define-public python-sphinxcontrib-autoprogram (package (name "python-sphinxcontrib-autoprogram") - (version "0.1.7") + (version "0.1.8") (source (origin (method url-fetch) (uri (pypi-uri "sphinxcontrib-autoprogram" version)) (sha256 (base32 - "06hzim0d3fd72kf30fyjbbm5n8ibyybic0kf62gm79qp50zjwr5w")))) + "02pi450qml429disph075jyqwjrawrhbsjfkqvjf10yjp6fp4sas")))) (build-system python-build-system) (propagated-inputs - (list python-six)) - (native-inputs - (list python-sphinx)) + (list python-six python-sphinx)) (home-page "https://github.com/sphinx-contrib/autoprogram") (synopsis "Documenting CLI programs") (description |