mirror of
git://git.savannah.gnu.org/guix.git
synced 2023-12-14 03:33:07 +01:00
gnu: Add python-pydbus.
* gnu/packages/python-xyz.scm (python-pydbus): New variable. Co-authored-by: Aleksandr Vityazev <avityazev@posteo.org> Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
This commit is contained in:
parent
9c43164e3d
commit
4527743f0a
1 changed files with 22 additions and 1 deletions
|
@ -92,8 +92,8 @@
|
|||
;;; Copyright © 2020 Liliana Marie Prikler <liliana.prikler@gmail.com>
|
||||
;;; Copyright © 2019 Kristian Trandem <kristian@devup.no>
|
||||
;;; Copyright © 2020, 2021 Zheng Junjie <873216071@qq.com>
|
||||
;;; Copyright © 2021 Morgan Smith <Morgan.J.Smith@outlook.com>
|
||||
;;; Copyright © 2020 EuAndreh <eu@euandre.org>
|
||||
;;; Copyright © 2021, 2022 Morgan Smith <Morgan.J.Smith@outlook.com>
|
||||
;;; Copyright © 2021 Sharlatan Hellseher <sharlatanus@gmail.com>
|
||||
;;; Copyright © 2021 Ellis Kenyő <me@elken.dev>
|
||||
;;; Copyright © 2021 LibreMiami <packaging-guix@libremiami.org>
|
||||
|
@ -115,6 +115,7 @@
|
|||
;;; Copyright © 2021 Filip Lajszczak <filip@lajszczak.dev>
|
||||
;;; Copyright © 2021 Greg Hogan <code@greghogan.com>
|
||||
;;; Copyright © 2022 John Kehayias <john.kehayias@protonmail.com>
|
||||
;;; Copyright © 2022 Aleksandr Vityazev <avityazev@posteo.org>
|
||||
;;;
|
||||
;;; This file is part of GNU Guix.
|
||||
;;;
|
||||
|
@ -9148,6 +9149,26 @@ parsing (browser/HTTP) user agent strings.")
|
|||
(define-public python2-user-agents
|
||||
(package-with-python2 python-user-agents))
|
||||
|
||||
(define-public python-pydbus
|
||||
(package
|
||||
(name "python-pydbus")
|
||||
(version "0.6.0")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (pypi-uri "pydbus" version))
|
||||
(sha256
|
||||
(base32 "0b0gipvz7vcfa9ddmwq2jrx16d4apb0hdnl5q4i3h8jlzwp1c1s2"))))
|
||||
(build-system python-build-system)
|
||||
(propagated-inputs (list python-pygobject))
|
||||
(home-page "https://github.com/LEW21/pydbus")
|
||||
(synopsis "Pythonic D-Bus library")
|
||||
(description "Pydbus provides a pythonic interface to the D-Bus
|
||||
message bus system. Pydbus can be used to access remote objects and
|
||||
also for object publication. It is based on PyGI, the Python GObject
|
||||
Introspection bindings, which is the recommended way to use GLib from Python.")
|
||||
(license license:lgpl2.1+)))
|
||||
|
||||
(define-public python-dbus
|
||||
(package
|
||||
(name "python-dbus")
|
||||
|
|
Loading…
Reference in a new issue