diff options
author | Marius Bakke <mbakke@fastmail.com> | 2019-11-27 23:46:21 +0100 |
---|---|---|
committer | Marius Bakke <mbakke@fastmail.com> | 2019-11-28 00:33:48 +0100 |
commit | ba5ef9997ba071339473590805331a5eec29b10d (patch) | |
tree | b978f50e5f569ed418231c93065bc102f6753fd3 | |
parent | e1695f4d588b88bc454a766c13f6787a235d1d13 (diff) | |
download | patches-ba5ef9997ba071339473590805331a5eec29b10d.tar patches-ba5ef9997ba071339473590805331a5eec29b10d.tar.gz |
gnu: python-dbus: Update to 1.2.14.
* gnu/packages/python-xyz.scm (python-dbus): Update to 1.2.14.
(python2-dbus)[arguments]: Remove.
-rw-r--r-- | gnu/packages/python-xyz.scm | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 7343366cd9..d2efa74228 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -5950,14 +5950,14 @@ parsing (browser/HTTP) user agent strings.") (define-public python-dbus (package (name "python-dbus") - (version "1.2.10") + (version "1.2.14") (source (origin (method url-fetch) (uri (string-append "https://dbus.freedesktop.org/releases/dbus-python/" "dbus-python-" version ".tar.gz")) (sha256 - (base32 "11nqk01iq5bx2llgb3ksknyinijdp29w4ndj210glm009ayjncyl")))) + (base32 "0cdchkgnivlka4lf8q4qfk0yxq483i3r3aqickjf8hfn7nx0c0mi")))) (build-system gnu-build-system) (native-inputs `(("pkg-config" ,pkg-config))) @@ -5976,10 +5976,7 @@ implementation of D-Bus.") (inputs `(("python" ,python-2) ,@(alist-delete "python" (package-inputs python-dbus) - equal?))) - ;; FIXME: on Python 2, the test_utf8 fails with: - ;; "ValueError: unichr() arg not in range(0x10000) (narrow Python build)" - (arguments `(#:tests? #f)))) + equal?))))) (define-public python-notify2 (package |