guix_mirror_bot pushed a commit to branch python-team
in repository guix.
commit 7859d5bb5a07f1eca212b4c9dec73650097d52d5
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Sun Sep 21 08:46:11 2025 +0100
gnu: Remove python-pbr-minimal.
* gnu/packages/python-xyz.scm (python-pbr-minimal): Delete variable.
Change-Id: I5911ecdd63cb8d797ca22730d77ef8a09261fc94
---
gnu/packages/python-xyz.scm | 30 ------------------------------
1 file changed, 30 deletions(-)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 148d584c01..ef34144c0f 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -7150,36 +7150,6 @@ port forwards using @acronym{UPnP, Universal Plug and
Play}.")
code introspection, and logging.")
(license license:expat)))
-;; Recent versions of python-fixtures and python-testrepository need
-;; python-pbr for packaging, which itself needs these two packages for
-;; testing.
-;; To fix this circular dependency, we use a build of python-pbr, based on the
-;; same source, just without any test dependencies and with tests disabled.
-;; python-pbr-minmal is then used to package python-fixtures and
-;; python-testrepository.
-;; Strictly speaking we currently could remove the test-requirements from the
-;; normal python-pbr package (and save this package) since test are disabled
-;; there anyway. But this may change in future.
-(define-public python-pbr-minimal
- (package
- (name "python-pbr-minimal")
- (version "5.5.1")
- (source
- (origin
- (method url-fetch)
- (uri (pypi-uri "pbr" version))
- (sha256
- (base32
- "1j8k5d4rdhy5bw5ai1vkjzln2albah94in3vvyvxa0n42fv81baz"))))
- (build-system python-build-system)
- (arguments
- `(#:tests? #f))
- (home-page "https://docs.openstack.org/pbr/latest/")
- (synopsis "Minimal build of python-pbr used for bootstrapping")
- (description
- "Used only for bootstrapping python2-pbr, you should not need this.")
- (license license:asl2.0)))
-
(define-public python-pbr
(package
(name "python-pbr")