guix_mirror_bot pushed a commit to branch python-team
in repository guix.
commit e943f36cc81f6984d4a2531c814b3d84592e98b4
Author: Nicolas Graves <[email protected]>
AuthorDate: Wed Jan 28 10:06:54 2026 +0100
gnu: libaccounts-glib: Relocate and reindent arguments.
* gnu/packages/glib.scm (libaccounts-glib)[arguments]: Relocate
field and reindent it.
Change-Id: I4d28ef0110f3fac61304ea021dda24444bbbc875
Signed-off-by: Sharlatan Hellseher <[email protected]>
---
gnu/packages/glib.scm | 44 +++++++++++++++++++++++---------------------
1 file changed, 23 insertions(+), 21 deletions(-)
diff --git a/gnu/packages/glib.scm b/gnu/packages/glib.scm
index 18711e1232..2e3b6ea9b0 100644
--- a/gnu/packages/glib.scm
+++ b/gnu/packages/glib.scm
@@ -851,6 +851,29 @@ by GDBus included in Glib.")
(base32
"0j181yw0jpw3bkq45hg0vhha5nyjjcssvfjj0y92311bkz15rf4q"))))
(build-system meson-build-system)
+ (arguments
+ (list
+ #:tests? #f ;one test fails.
+ #:imported-modules `((guix build python-build-system)
+ ,@%meson-build-system-modules)
+ #:modules '(((guix build python-build-system)
+ #:select (python-version))
+ (guix build meson-build-system)
+ (guix build utils))
+ ;; don't try installing to python store path.
+ #:configure-flags
+ #~(list (string-append "-Dpy-overrides-dir="
+ #$output "/lib/python"
+ (python-version #$(this-package-input
+ "python"))
+ "/site-packages/gi/overrides"))
+ #:phases
+ #~(modify-phases %standard-phases
+ (replace 'check
+ (lambda* (#:key tests? #:allow-other-keys)
+ (when tests?
+ (invoke "dbus-run-session" "--" "meson" "test"
+ "--print-errorlogs")))))))
(native-inputs (list dbus
`(,glib "bin")
gobject-introspection
@@ -859,27 +882,6 @@ by GDBus included in Glib.")
vala))
(inputs (list check python python-pygobject))
(propagated-inputs (list glib libxml2 sqlite))
- (arguments
- (list #:tests? #f ;one test fails.
- #:imported-modules `((guix build python-build-system)
- ,@%meson-build-system-modules)
- #:modules '(((guix build python-build-system)
- #:select (python-version))
- (guix build meson-build-system)
- (guix build utils))
- ;; don't try installing to python store path.
- #:configure-flags
- #~(list (string-append "-Dpy-overrides-dir="
- #$output "/lib/python"
- (python-version #$(this-package-input
- "python"))
- "/site-packages/gi/overrides"))
- #:phases #~(modify-phases %standard-phases
- (replace 'check
- (lambda* (#:key tests? #:allow-other-keys)
- (when tests?
- (invoke "dbus-run-session" "--" "meson" "test"
- "--print-errorlogs")))))))
(home-page "https://accounts-sso.gitlab.io/")
(synopsis "Accounts SSO (Single Sign-On) management library for GLib
applications")