From b7494794d545306bb61a6976d0618e47d2c3a366 Mon Sep 17 00:00:00 2001 From: Petr Hodina Date: Fri, 30 Jul 2021 17:17:21 +0200 Subject: [PATCH 16/20] gnu: Add python-mycroft-messagebus-client. * gnu/packages/python-xyz.scm (python-mycroft-messagebus-client): New variable. diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index e70e21beaa..eb902b95a2 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -21660,6 +21660,29 @@ (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 + `(("python-pyee" ,python-pyee) + ("python-websocket-client" + ,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