mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 07:26:13 -05:00
gnu: Add python2-dbus.
* gnu/packages/python.scm (python2-dbus): New variable.
This commit is contained in:
parent
d95a56c632
commit
b52af02b5d
1 changed files with 11 additions and 0 deletions
|
@ -2902,3 +2902,14 @@ (define-public python-dbus
|
|||
implementation of D-Bus.")
|
||||
(home-page "http://www.freedesktop.org/wiki/Software/DBusBindings/")
|
||||
(license expat)))
|
||||
|
||||
(define-public python2-dbus
|
||||
(package (inherit python-dbus)
|
||||
(name "python2-dbus")
|
||||
(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))))
|
||||
|
|
Loading…
Reference in a new issue