all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: "Sébastien Lerique" <sl@eauchat.org>
To: 52849@debbugs.gnu.org
Cc: "Sébastien Lerique" <sl@eauchat.org>
Subject: [bug#52849] [PATCH 1/2] gnu: Add python-pydbus.
Date: Tue, 28 Dec 2021 23:24:16 +0900	[thread overview]
Message-ID: <20211228142416.218390-2-sl@eauchat.org> (raw)
In-Reply-To: <87o850q0gw.fsf@eauchat.org>

* gnu/packages/python-xyz.scm (python-pydbus): New variable.
---
 gnu/packages/python-xyz.scm | 32 ++++++++++++++++++++++++++++++++
 1 file changed, 32 insertions(+)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 7ca0b1668d..a9ea4e69b4 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -8950,6 +8950,38 @@ (define-public python-user-agents
 (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 git-fetch)
+       (uri (git-reference
+             (url "https://github.com/LEW21/pydbus")
+             (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32
+         "0v0cyb4ffjrrmd6pxk1vr94k81ggqrfv8aisdm26jxdvdxf8llhp"))))
+    (build-system python-build-system)
+    (arguments
+     `(#:phases
+       (modify-phases %standard-phases
+         (replace 'check
+           (lambda* (#:key tests? #:allow-other-keys)
+             (when tests?
+               (invoke "tests/run.sh")))))))
+    (native-inputs
+     (list dbus glib gobject-introspection))
+    (propagated-inputs
+     (list python-pygobject))
+    (home-page "https://github.com/LEW21/pydbus")
+    (synopsis "Pythonic D-Bus library")
+    (description "A modern, pythonic D-Bus library built on top of PyGI and
+GDBus.")
+    (license license:lgpl2.1+)))
+
 (define-public python-dbus
   (package
     (name "python-dbus")
-- 
2.34.0





  reply	other threads:[~2021-12-28 14:26 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-12-28 14:09 [bug#52849] [PATCH 0/2] Fix pantalaimon build by adding optional dependencies Sébastien Lerique
2021-12-28 14:24 ` Sébastien Lerique [this message]
2021-12-28 14:24   ` [bug#52849] [PATCH 2/2] gnu: pantalaimon: Add " Sébastien Lerique
2021-12-28 15:19 ` [bug#52849] [PATCH 0/2] Fix pantalaimon build by adding " Aleksandr Vityazev
2021-12-29 12:18   ` Sébastien Lerique
2021-12-29 15:50     ` bug#52849: " Michael Rohleder

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20211228142416.218390-2-sl@eauchat.org \
    --to=sl@eauchat.org \
    --cc=52849@debbugs.gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.