guix_mirror_bot pushed a commit to branch python-team
in repository guix.
commit ee776e8efba92a5541a819e85d0ad82eb14f672f
Author: Nicolas Graves <[email protected]>
AuthorDate: Mon Jan 19 22:28:08 2026 +0100
gnu: python-dbusmock-minimal: Rename to python-dbusmock-for-tests.
* gnu/packages/gnome.scm (upower)
* gnu/packages/gtk.scm (at-spi2-core)
* gnu/packages/polkit.scm (polkit)
[native-inputs]: Remove python-dbusmock-minimal; add
python-dbusmock-for-tests.
* gnu/packages/python-xyz.scm
(python-dbusmock-minimal): Rename to python-dbusmock-for-tests.
(python-dbusmock-minimal): New deprecated package.
Change-Id: I640ede147bd1b85b671a76b2d9096fea063164b1
Reviewed-by: Nguyễn Gia Phong <[email protected]>
Reviewed-by: Liliana Marie Prikler <[email protected]>
Signed-off-by: Sharlatan Hellseher <[email protected]>
---
gnu/packages/gnome.scm | 2 +-
gnu/packages/gtk.scm | 2 +-
gnu/packages/polkit.scm | 2 +-
gnu/packages/python-xyz.scm | 8 ++++++--
4 files changed, 9 insertions(+), 5 deletions(-)
diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm
index 0354717d98..55b99d9622 100644
--- a/gnu/packages/gnome.scm
+++ b/gnu/packages/gnome.scm
@@ -5883,7 +5883,7 @@ faster results and to avoid unnecessary server load.")
python
;; For tests.
python-dbus
- python-dbusmock-minimal
+ python-dbusmock-for-tests
python-packaging
python-pygobject
umockdev
diff --git a/gnu/packages/gtk.scm b/gnu/packages/gtk.scm
index 662c9871a9..25abc0cfad 100644
--- a/gnu/packages/gtk.scm
+++ b/gnu/packages/gtk.scm
@@ -861,7 +861,7 @@ images.")
gobject-introspection
gsettings-desktop-schemas
pkg-config
- python-dbusmock-minimal
+ python-dbusmock-for-tests
python-pytest
python-wrapper))
(synopsis "Assistive Technology Service Provider Interface, core
components")
diff --git a/gnu/packages/polkit.scm b/gnu/packages/polkit.scm
index bcbc08c707..6f45341cce 100644
--- a/gnu/packages/polkit.scm
+++ b/gnu/packages/polkit.scm
@@ -204,7 +204,7 @@ able to request elevated privileges.")
perl
pkg-config
python
- python-dbusmock-minimal))
+ python-dbusmock-for-tests))
(home-page "https://www.freedesktop.org/wiki/Software/polkit/")
(synopsis "Authorization API for privilege management")
(description "Polkit is an application-level toolkit for defining and
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 2d8c63731e..73f0211b66 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -28780,10 +28780,10 @@ impossible without root privileges) to set the state
of the real services to
what you expect in your tests.")
(license license:lgpl3+)))
-(define-public python-dbusmock-minimal
+(define-public python-dbusmock-for-tests
(package
(inherit python-dbusmock)
- (name "python-dbusmock-minimal")
+ (name "python-dbusmock-for-tests")
(version "0.37.2")
(source
(origin
@@ -28804,6 +28804,10 @@ what you expect in your tests.")
(native-inputs (list python-setuptools which))
(properties '((hidden? . #t)))))
+;; XXX: Deprecated on <2026-01-21>.
+(define-deprecated/public-alias python-dbusmock-minimal
+ python-dbusmock-for-tests)
+
(define-public python-jsonplus
(package
(name "python-jsonplus")