diff options
author | Marius Bakke <marius@gnu.org> | 2022-09-11 18:01:35 +0200 |
---|---|---|
committer | Marius Bakke <marius@gnu.org> | 2022-09-11 19:43:16 +0200 |
commit | 2c9424c4aab32d1bc26a7f93f5384ed767583878 (patch) | |
tree | ee8c409daaef56fd302303482fb3a1e5275743df /gnu | |
parent | 87567bbc9e0cee7a7503e8db01a3833e79541d96 (diff) | |
download | guix-2c9424c4aab32d1bc26a7f93f5384ed767583878.tar.gz guix-2c9424c4aab32d1bc26a7f93f5384ed767583878.zip |
gnu: python-sphinx-theme-builder: Update to 0.2.0b1.
* gnu/packages/sphinx.scm (python-sphinx-theme-builder): Update to 0.2.0b1.
[propagated-inputs]: Change from PYTHON-PEP621 to PYTHON-PYPROJECT-METADATA.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/sphinx.scm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gnu/packages/sphinx.scm b/gnu/packages/sphinx.scm index 7c60ac8c9e..2d53b7f3ac 100644 --- a/gnu/packages/sphinx.scm +++ b/gnu/packages/sphinx.scm @@ -1003,7 +1003,7 @@ automated way to document command-line programs. It scans (define-public python-sphinx-theme-builder (package (name "python-sphinx-theme-builder") - (version "0.2.0a14") + (version "0.2.0b1") (source (origin (method git-fetch) ;no tests in pypi archive @@ -1013,7 +1013,7 @@ automated way to document command-line programs. It scans (file-name (git-file-name name version)) (sha256 (base32 - "1brqp34q716gglliallbgq4m63hl3nk8j6w8wcl8f2vvnkch6v98")))) + "15gvwzd4l3wcmd6fns8xvv44yzxmamr1nfn28mp12sdw2y10v2ba")))) (build-system python-build-system) (arguments (list @@ -1040,7 +1040,7 @@ automated way to document command-line programs. It scans python-click python-nodeenv python-packaging - python-pep621 + python-pyproject-metadata python-rich python-sphinx-autobuild python-tomli)) |