From 4527743f0a2d58d7cdf5abdd74016908eecd66a6 Mon Sep 17 00:00:00 2001 From: Morgan Smith Date: Sat, 15 Jan 2022 14:59:41 -0500 Subject: gnu: Add python-pydbus. * gnu/packages/python-xyz.scm (python-pydbus): New variable. Co-authored-by: Aleksandr Vityazev Signed-off-by: Nicolas Goaziou --- gnu/packages/python-xyz.scm | 23 ++++++++++++++++++++++- 1 file changed, 22 insertions(+), 1 deletion(-) diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 0fb2fd0e2c..80ce58400a 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -92,8 +92,8 @@ ;;; Copyright © 2020 Liliana Marie Prikler ;;; Copyright © 2019 Kristian Trandem ;;; Copyright © 2020, 2021 Zheng Junjie <873216071@qq.com> -;;; Copyright © 2021 Morgan Smith ;;; Copyright © 2020 EuAndreh +;;; Copyright © 2021, 2022 Morgan Smith ;;; Copyright © 2021 Sharlatan Hellseher ;;; Copyright © 2021 Ellis Kenyő ;;; Copyright © 2021 LibreMiami @@ -115,6 +115,7 @@ ;;; Copyright © 2021 Filip Lajszczak ;;; Copyright © 2021 Greg Hogan ;;; Copyright © 2022 John Kehayias +;;; Copyright © 2022 Aleksandr Vityazev ;;; ;;; 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") -- cgit v1.2.3