apteryx pushed a commit to branch core-updates-frozen-batched-changes in repository guix.
commit c96a3db439999244e842ada8536d71f26e7b4ca3 Author: Maxim Cournoyer <[email protected]> AuthorDate: Sat Oct 23 21:49:47 2021 -0400 gnu: python-dbus: Update to 1.2.18. * gnu/packages/python-xyz.scm (python-dbus): Update to 1.2.18. (python2-dbus)[configure-flags]: Provide the PYTHON_VERSION configure variable. --- gnu/packages/python-xyz.scm | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 4538e99..de953a6 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -8807,14 +8807,14 @@ parsing (browser/HTTP) user agent strings.") (define-public python-dbus (package (name "python-dbus") - (version "1.2.16") + (version "1.2.18") (source (origin (method url-fetch) (uri (string-append "https://dbus.freedesktop.org/releases/dbus-python/" "dbus-python-" version ".tar.gz")) (sha256 - (base32 "196m5rk3qzw5nkmgzjl7wmq0v7vpwfhh8bz2sapdi5f9hqfqy8qi")))) + (base32 "0q3jrw515z98mqdk9x822nd95rky455zz9876f1nqna5igkd3gcj")))) (build-system gnu-build-system) (native-inputs `(("pkg-config" ,pkg-config))) @@ -8833,7 +8833,9 @@ implementation of D-Bus.") (inputs `(("python" ,python-2) ,@(alist-delete "python" (package-inputs python-dbus) - equal?))))) + equal?))) + (arguments + `(#:configure-flags '("PYTHON_VERSION=2"))))) (define-public python-notify2 (package
