From 8f5c9398ac1a6ac1871d5cf8a1efbe6a70ed4a1b Mon Sep 17 00:00:00 2001 From: Lars-Dominik Braun Date: Mon, 1 Mar 2021 14:16:07 +0100 Subject: [PATCH 10/12] gnu: Add python-u-msgpack. * gnu/packages/python-xyz.scm (python-u-msgpack): New variable. The redundant -python postfix from the original package name has been removed. --- gnu/packages/python-xyz.scm | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index d598a380a9..ab3c6d301e 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -23659,3 +23659,27 @@ Application Programming Interface based on the Open Inventor 2.1 API.") Crayons automatically wraps a given string in the foreground color and restores the original state after the string is printed.") (license license:expat))) + +(define-public python-u-msgpack + (package + (name "python-u-msgpack") + (version "2.7.1") + (source + (origin + (method url-fetch) + (uri (pypi-uri "u-msgpack-python" version)) + (sha256 + (base32 + "0lcmlr7gc4dydpxn6l5bdcq40c3ghf8mv1sjqyj72wdpr8rx9rxp")))) + (build-system python-build-system) + (home-page + "https://github.com/vsergeev/u-msgpack-python") + (synopsis + "Portable, lightweight MessagePack serializer and deserializer") + (description + "A portable, lightweight MessagePack serializer and deserializer written +in pure Python. u-msgpack-python is fully compliant with the latest MessagePack +specification. In particular, it supports the new binary, UTF-8 string, +application-defined ext, and timestamp types.") + (license license:expat))) + -- 2.26.2