diff options
author | Marius Bakke <[email protected]> | 2023-09-11 22:49:35 +0800 |
---|---|---|
committer | Marius Bakke <[email protected]> | 2023-09-22 01:29:18 +0800 |
commit | d546023c865b819c3d56d66b2e43ae6642300390 (patch) | |
tree | 3246531ff4a511e21c3981ba66dd20c4f19cd308 | |
parent | 08250bffab2ff09eb0dc12eaa39f4ecec3a9c3b5 (diff) |
gnu: Add python-sphinx-basic-ng.
* gnu/packages/sphinx.scm (python-sphinx-basic-ng): New variable.
-rw-r--r-- | gnu/packages/sphinx.scm | 20 |
1 files changed, 19 insertions, 1 deletions
diff --git a/gnu/packages/sphinx.scm b/gnu/packages/sphinx.scm index 173accd768..219063807e 100644 --- a/gnu/packages/sphinx.scm +++ b/gnu/packages/sphinx.scm @@ -3,7 +3,7 @@ ;;; Copyright © 2015, 2017, 2019, 2020, 2021, 2023 Ricardo Wurmus <[email protected]> ;;; Copyright © 2015, 2016, 2017 Leo Famulari <[email protected]> ;;; Copyright © 2016 Hartmut Goebel <[email protected]> -;;; Copyright © 2016-2019, 2022 Marius Bakke <[email protected]> +;;; Copyright © 2016-2019, 2022, 2023 Marius Bakke <[email protected]> ;;; Copyright © 2017 Danny Milosavljevic <[email protected]> ;;; Copyright © 2017, 2018, 2020 Tobias Geerinckx-Rice <[email protected]> ;;; Copyright © 2017 Frederick M. Muriithi <[email protected]> @@ -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") |