guix_mirror_bot pushed a commit to branch master
in repository guix.
commit fd73aed8a665373f471f9990c0490840fcf57785
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Fri Jul 24 22:36:03 2026 +0100
gnu: python-reno: Build from git.
* gnu/packages/openstack.scm (python-reno):
[source]: Switch to git-fetch.
[native-inputs]: Remove python-wheel.
---
gnu/packages/openstack.scm | 12 +++++++-----
1 file changed, 7 insertions(+), 5 deletions(-)
diff --git a/gnu/packages/openstack.scm b/gnu/packages/openstack.scm
index 352aa076ab..1fe56dde8f 100644
--- a/gnu/packages/openstack.scm
+++ b/gnu/packages/openstack.scm
@@ -788,10 +788,13 @@ in transmittable and storable formats, such as JSON and
MessagePack.")
(version "4.1.0")
(source
(origin
- (method url-fetch)
- (uri (pypi-uri "reno" version))
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://opendev.org/openstack/reno")
+ (commit version)))
+ (file-name (git-file-name name version))
(sha256
- (base32 "0w2kc9znm3ffcfsrwhvqkq6878jk3l9hibs7vv4mw88nppyz34pr"))))
+ (base32 "0h9d049xq4nfw26mry3br1xdcvsw8lyawv1ihmc3jf0p9ns4kvwm"))))
(build-system pyproject-build-system)
(arguments
(list
@@ -813,8 +816,7 @@ in transmittable and storable formats, such as JSON and
MessagePack.")
python-stestr
python-subunit
python-testscenarios
- python-testtools
- python-wheel))
+ python-testtools))
(propagated-inputs
(list python-dulwich
python-pyyaml))