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.
This commit is contained in:
Maxim Cournoyer 2021-10-23 21:49:47 -04:00
parent 7b5824f1a7
commit 2e2c6482c9
No known key found for this signature in database
GPG key ID: 1260E46482E63562

View file

@ -8817,14 +8817,14 @@ (define-public python2-user-agents
(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)))
@ -8843,7 +8843,9 @@ (define-public python2-dbus
(inputs `(("python" ,python-2)
,@(alist-delete "python"
(package-inputs python-dbus)
equal?)))))
equal?)))
(arguments
`(#:configure-flags '("PYTHON_VERSION=2")))))
(define-public python-notify2
(package