guix_mirror_bot pushed a commit to branch master
in repository guix.
commit bf7b82fb411607dcee5485b866f03db9ba56bab8
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Fri Jul 24 22:30:45 2026 +0100
gnu: python-openstackdocstheme: Update to 3.6.0.
* gnu/packages/openstack.scm (python-openstackdocstheme): Update to 3.6.0.
[source]: Switch to git-fetch.
[native-inputs]: Remove python-wheel.
---
gnu/packages/openstack.scm | 14 ++++++++------
1 file changed, 8 insertions(+), 6 deletions(-)
diff --git a/gnu/packages/openstack.scm b/gnu/packages/openstack.scm
index 7fe4fb169b..352aa076ab 100644
--- a/gnu/packages/openstack.scm
+++ b/gnu/packages/openstack.scm
@@ -176,20 +176,22 @@ guidelines}.")
(define-public python-openstackdocstheme
(package
(name "python-openstackdocstheme")
- (version "3.4.1")
+ (version "3.6.0")
(source
(origin
- (method url-fetch)
- (uri (pypi-uri "openstackdocstheme" version))
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://opendev.org/openstack/openstackdocstheme")
+ (commit version)))
+ (file-name (git-file-name name version))
(sha256
- (base32 "0f8vk9556cx3h2z2dwqqkylv3rijd1p15qjy4xjv9sxxcfngdx1q"))))
+ (base32 "0q7l374myiymnvlfa54iyj9iaa2pxxpdkqjhkc478n10v5ijbgq6"))))
(build-system pyproject-build-system)
(arguments
(list
#:tests? #f)) ; no tests in PyPI archive or git checkout
(native-inputs
- (list python-setuptools
- python-wheel))
+ (list python-setuptools))
(propagated-inputs
(list python-dulwich
python-pbr