From 10c02e7b77e51e3946fff4c1ca0f9ada154fadb7 Mon Sep 17 00:00:00 2001 Message-Id: <10c02e7b77e51e3946fff4c1ca0f9ada154fadb7.1643064269.git.mail@nicolasgoaziou.fr> In-Reply-To: References: From: Petr Hodina Date: Mon, 24 Jan 2022 16:01:00 +0100 Subject: [PATCH v2 11/19] gnu: Add python-msm. * gnu/packages/python-xyz.scm (python-msm): New variable. Signed-off-by: Nicolas Goaziou --- gnu/packages/python-xyz.scm | 33 ++++++++++++++++++++++++++++++--- 1 file changed, 30 insertions(+), 3 deletions(-) diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 2706dac029..aec75b3ac4 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -11196,6 +11196,33 @@ (define-public python-msgpack-transitional (define-public python2-msgpack (package-with-python2 python-msgpack)) +(define-public python-msm + (package + (name "python-msm") + (version "0.8.9") + (source + (origin + (method url-fetch) + (uri (pypi-uri "msm" version)) + (sha256 + (base32 + "00z588imq7q33iv3hn83mf2cyqrbs5f6zzyfa6445ainxvskkzz2")))) + (build-system python-build-system) + (propagated-inputs + (list python-fasteners + python-gitpython + python-lazy + python-pako + python-pyxdg + python-pyyaml + python-requests)) + (home-page "https://github.com/MycroftAI/mycroft-skills-manager") + (synopsis "Mycroft skills manager") + (description "This package provides a command line tool for interacting +with the Mycroft skills repository.") + (license license:asl2.0))) + + (define-public python-netaddr (package (name "python-netaddr") @@ -11205,14 +11232,14 @@ (define-public python-netaddr (method url-fetch) (uri (pypi-uri "netaddr" version)) (sha256 - (base32 - "0hx2npi0wnhwlcybilgwlddw6qffx1mb7a3sj4p9s7bvl33mgk6n")))) + (base32 + "0hx2npi0wnhwlcybilgwlddw6qffx1mb7a3sj4p9s7bvl33mgk6n")))) (build-system python-build-system) (arguments `(#:tests? #f)) ;; No tests. (home-page "https://github.com/drkjam/netaddr/") (synopsis "Pythonic manipulation of network addresses") (description - "A Python library for representing and manipulating IPv4, IPv6, CIDR, EUI + "A Python library for representing and manipulating IPv4, IPv6, CIDR, EUI and MAC network addresses.") (license license:bsd-3))) -- 2.34.0