From 31b5eee023b1bd62775157d281bfb34134fdd6fc Mon Sep 17 00:00:00 2001 Message-Id: <31b5eee023b1bd62775157d281bfb34134fdd6fc.1643064269.git.mail@nicolasgoaziou.fr> In-Reply-To: References: From: Petr Hodina Date: Fri, 30 Jul 2021 17:17:21 +0200 Subject: [PATCH v2 16/19] gnu: Add python-mycroft-messagebus-client. * gnu/packages/python-xyz.scm (python-mycroft-messagebus-client): New variable. Signed-off-by: Nicolas Goaziou --- 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 e8b7139073..f3c05232e1 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -21943,6 +21943,27 @@ (define-public python2-more-itertools (propagated-inputs `(("python2-six" ,python2-six-bootstrap))))) +(define-public python-mycroft-messagebus-client + (package + (name "python-mycroft-messagebus-client") + (version "0.9.5") + (source + (origin + (method url-fetch) + (uri (pypi-uri "mycroft-messagebus-client" version)) + (sha256 + (base32 + "08vsamppk12a15yiv5ra6rr3x3psinsln7y06aw4abpj6cja8pgw")))) + (build-system python-build-system) + (propagated-inputs + (list python-pyee python-websocket-client)) + (home-page "https://github.com/MycroftAI/mycroft-messagebus-client") + (synopsis "Mycroft Messagebus Client") + (description "This module provides simple interface for the mycroft +messagebus and can be used to connect to mycroft, send messages and react +to messages sent by the Mycroft system.") + (license license:asl2.0))) + (define-public python-latexcodec (package (name "python-latexcodec") -- 2.34.0