all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [bug#53286] [PATCH v2 1/3] gnu: emacs-ement: Propagate inputs.
       [not found] <20220115195942.27088-1-Morgan.J.Smith@outlook.com>
@ 2022-01-15 19:59 ` Morgan.J.Smith
  2022-01-15 19:59 ` [bug#53286] [PATCH v2 2/3] gnu: Add python-pydbus Morgan.J.Smith
  2022-01-15 19:59 ` [bug#53286] [PATCH v2 3/3] gnu: pantalaimon: Add needed inputs Morgan.J.Smith
  2 siblings, 0 replies; 3+ messages in thread
From: Morgan.J.Smith @ 2022-01-15 19:59 UTC (permalink / raw)
  To: avityazev, maximedevos; +Cc: Morgan Smith, 53286

From: Morgan Smith <Morgan.J.Smith@outlook.com>

* gnu/packages/emacs-xyz (emacs-ement) <inputs>: Change to propagated-inputs.
---
 gnu/packages/emacs-xyz.scm | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 4a701d21e3..80d4228e64 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -15244,7 +15244,7 @@ (define-public emacs-ement
       (build-system emacs-build-system)
       (arguments
        `(#:emacs ,emacs))               ;need libxml support
-      (inputs
+      (propagated-inputs
        (list emacs-plz emacs-ts))
       (home-page "https://github.com/alphapapa/ement.el")
       (synopsis "Matrix client for Emacs")
-- 
2.34.0





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

* [bug#53286] [PATCH v2 2/3] gnu: Add python-pydbus.
       [not found] <20220115195942.27088-1-Morgan.J.Smith@outlook.com>
  2022-01-15 19:59 ` [bug#53286] [PATCH v2 1/3] gnu: emacs-ement: Propagate inputs Morgan.J.Smith
@ 2022-01-15 19:59 ` Morgan.J.Smith
  2022-01-15 19:59 ` [bug#53286] [PATCH v2 3/3] gnu: pantalaimon: Add needed inputs Morgan.J.Smith
  2 siblings, 0 replies; 3+ messages in thread
From: Morgan.J.Smith @ 2022-01-15 19:59 UTC (permalink / raw)
  To: avityazev, maximedevos; +Cc: Morgan Smith, 53286

From: Morgan Smith <Morgan.J.Smith@outlook.com>

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

Co-authored-by: Aleksandr Vityazev <avityazev@posteo.org>
---
 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 3f8f6d4618..11219749a4 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -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.
 ;;;
@@ -9121,6 +9122,26 @@ (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 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")
-- 
2.34.0





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

* [bug#53286] [PATCH v2 3/3] gnu: pantalaimon: Add needed inputs
       [not found] <20220115195942.27088-1-Morgan.J.Smith@outlook.com>
  2022-01-15 19:59 ` [bug#53286] [PATCH v2 1/3] gnu: emacs-ement: Propagate inputs Morgan.J.Smith
  2022-01-15 19:59 ` [bug#53286] [PATCH v2 2/3] gnu: Add python-pydbus Morgan.J.Smith
@ 2022-01-15 19:59 ` Morgan.J.Smith
  2 siblings, 0 replies; 3+ messages in thread
From: Morgan.J.Smith @ 2022-01-15 19:59 UTC (permalink / raw)
  To: avityazev, maximedevos; +Cc: Morgan Smith, 53286

From: Morgan Smith <Morgan.J.Smith@outlook.com>

* gnu/packages/matrix.scm (pantalaimon)
<propagated-inputs>: Add python-dbus, python-notify2, python-pydbus, and
python-pygobject.
<arguments>: Run sanity-check phase.

Co-authored-by: Aleksandr Vityazev <avityazev@posteo.org>
---
 gnu/packages/matrix.scm | 20 +++++++++++++-------
 1 file changed, 13 insertions(+), 7 deletions(-)

diff --git a/gnu/packages/matrix.scm b/gnu/packages/matrix.scm
index e2c27f5a4c..5f94eb2075 100644
--- a/gnu/packages/matrix.scm
+++ b/gnu/packages/matrix.scm
@@ -3,6 +3,8 @@
 ;;; Copyright © 2020 Tobias Geerinckx-Rice <me@tobias.gr>
 ;;; Copyright © 2020, 2021 Michael Rohleder <mike@rohleder.de>
 ;;; Copyright © 2020 Giacomo Leidi <goodoldpaul@autistici.org>
+;;; Copyright © 2022 Aleksandr Vityazev <avityazev@posteo.org>
+;;; Copyright © 2022 Morgan Smith <Morgan.J.Smith@outlook.com>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -24,6 +26,7 @@ (define-module (gnu packages matrix)
   #:use-module (gnu packages check)
   #:use-module (gnu packages crypto)
   #:use-module (gnu packages databases)
+  #:use-module (gnu packages glib)
   #:use-module (gnu packages monitoring)
   #:use-module (gnu packages python-build)
   #:use-module (gnu packages python-check)
@@ -257,25 +260,28 @@ (define-public pantalaimon
            (lambda* (#:key tests? inputs outputs #:allow-other-keys)
              (when tests?
                (add-installed-pythonpath inputs outputs)
-               (invoke "pytest" "-vv" "tests"))))
-         ;; XXX: The sanity check trips on optional GUI libraries for the
-         ;; panctl command.
-         (delete 'sanity-check))))
+               (invoke "pytest" "-vv" "tests")))))))
     (native-inputs
-     (list python-pytest python-faker python-pytest-aiohttp
-           python-aioresponses))
+     (list python-aioresponses
+           python-faker
+           python-pytest
+           python-pytest-aiohttp))
     (propagated-inputs
      (list python-aiohttp
            python-appdirs
            python-attrs
            python-cachetools
            python-click
+           python-dbus
            python-janus
            python-keyring
            python-logbook
            python-matrix-nio
+           python-notify2
            python-peewee
-           python-prompt-toolkit))
+           python-prompt-toolkit
+           python-pydbus
+           python-pygobject))
     (home-page "https://github.com/matrix-org/pantalaimon")
     (synopsis "Matrix proxy daemon that adds E2E encryption capabilities")
     (description
-- 
2.34.0





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

end of thread, other threads:[~2022-01-15 20:02 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <20220115195942.27088-1-Morgan.J.Smith@outlook.com>
2022-01-15 19:59 ` [bug#53286] [PATCH v2 1/3] gnu: emacs-ement: Propagate inputs Morgan.J.Smith
2022-01-15 19:59 ` [bug#53286] [PATCH v2 2/3] gnu: Add python-pydbus Morgan.J.Smith
2022-01-15 19:59 ` [bug#53286] [PATCH v2 3/3] gnu: pantalaimon: Add needed inputs Morgan.J.Smith

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.