all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* bug#52552: [PATCH 2/2] gnu: pantalaimon: Propagate python-pydbus and python-notify2.
       [not found] <cover.1640084945.git.avityazev@posteo.org>
@ 2021-12-21 11:10 ` Aleksandr Vityazev
  2021-12-21 11:10 ` [bug#52700] [PATCH 1/2] gnu: Add python-pydbus Aleksandr Vityazev
  1 sibling, 0 replies; 3+ messages in thread
From: Aleksandr Vityazev @ 2021-12-21 11:10 UTC (permalink / raw)
  To: 52700; +Cc: 52552

* gnu/packages/matrix.scm: Import (gnu packages glib).
(pantalaimon):
[native-inputs]: Change formatting, add python-pygobject.
[propagated-inputs]: Add python-pydbus and python-notify2.
---
 gnu/packages/matrix.scm | 11 +++++++++--
 1 file changed, 9 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/matrix.scm b/gnu/packages/matrix.scm
index 8cdfa38b32..8780b156af 100644
--- a/gnu/packages/matrix.scm
+++ b/gnu/packages/matrix.scm
@@ -3,6 +3,7 @@
 ;;; Copyright © 2020 Tobias Geerinckx-Rice <me@tobias.gr>
 ;;; Copyright © 2020, 2021 Michael Rohleder <mike@rohleder.de>
 ;;; Copyright © 2020 Giacomo Leidi <goodoldpaul@autistici.org>
+;;; Copyright © 2021 Aleksandr Vityazev <avityazev@posteo.org>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -31,6 +32,7 @@ (define-module (gnu packages matrix)
   #:use-module (gnu packages python-web)
   #:use-module (gnu packages python-xyz)
   #:use-module (gnu packages xml)
+  #:use-module (gnu packages glib)
   #:use-module (guix build-system python)
   #:use-module (guix download)
   #:use-module (guix git-download)
@@ -256,10 +258,15 @@ (define-public pantalaimon
                (add-installed-pythonpath inputs outputs)
                (invoke "pytest" "-vv" "tests")))))))
     (native-inputs
-     (list python-pytest python-faker python-pytest-aiohttp
-           python-aioresponses))
+     (list python-faker
+           python-pytest
+           python-pygobject
+           python-aioresponses
+           python-pytest-aiohttp))
     (propagated-inputs
      (list python-aiohttp
+           python-pydbus
+           python-notify2
            python-appdirs
            python-attrs
            python-cachetools
-- 
2.34.0



-- 

Aleksandr Vityazev




^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [bug#52700] [PATCH 1/2] gnu: Add python-pydbus.
       [not found] <cover.1640084945.git.avityazev@posteo.org>
  2021-12-21 11:10 ` bug#52552: [PATCH 2/2] gnu: pantalaimon: Propagate python-pydbus and python-notify2 Aleksandr Vityazev
@ 2021-12-21 11:10 ` Aleksandr Vityazev
  2022-01-16 23:21   ` bug#52700: " Nicolas Goaziou
  1 sibling, 1 reply; 3+ messages in thread
From: Aleksandr Vityazev @ 2021-12-21 11:10 UTC (permalink / raw)
  To: 52700; +Cc: 52552

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

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 2af4794019..35590aece2 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -112,6 +112,7 @@
 ;;; Copyright © 2021 Sébastien Lerique <sl@eauchat.org>
 ;;; Copyright © 2021 Raphaël Mélotte <raphael.melotte@mind.be>
 ;;; Copyright © 2021 ZmnSCPxj <ZmnSCPxj@protonmail.com>
+;;; Copyright © 2021 Aleksandr Vityazev <avityazev@posteo.org>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -8929,6 +8930,26 @@ (define-public python-dbus-next
 mobile environments.")
     (license license:expat)))
 
+(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"))))
+    (inputs (list python-pygobject))
+    (build-system python-build-system)
+    (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-notify2
   (package
     (name "python-notify2")
-- 
2.34.0



-- 

Aleksandr Vityazev




^ permalink raw reply related	[flat|nested] 3+ messages in thread

* bug#52700: [PATCH 1/2] gnu: Add python-pydbus.
  2021-12-21 11:10 ` [bug#52700] [PATCH 1/2] gnu: Add python-pydbus Aleksandr Vityazev
@ 2022-01-16 23:21   ` Nicolas Goaziou
  0 siblings, 0 replies; 3+ messages in thread
From: Nicolas Goaziou @ 2022-01-16 23:21 UTC (permalink / raw)
  To: Aleksandr Vityazev; +Cc: 52700-done, 52552-done

Hello,

Aleksandr Vityazev <avityazev@posteo.org> writes:

> * gnu/packages/python-xyz (python-pydbus): New variable.

This was applied in 4527743f0a2d58d7cdf5abdd74016908eecd66a6 and
subsequent commit.

Thank you!

Regards,
-- 
Nicolas Goaziou




^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2022-01-16 23:22 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <cover.1640084945.git.avityazev@posteo.org>
2021-12-21 11:10 ` bug#52552: [PATCH 2/2] gnu: pantalaimon: Propagate python-pydbus and python-notify2 Aleksandr Vityazev
2021-12-21 11:10 ` [bug#52700] [PATCH 1/2] gnu: Add python-pydbus Aleksandr Vityazev
2022-01-16 23:21   ` bug#52700: " Nicolas Goaziou

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.