>From 271997517b2b03aec44e8b158c911412caccf7bf Mon Sep 17 00:00:00 2001 From: Lars-Dominik Braun Date: Mon, 1 Mar 2021 14:16:07 +0100 Subject: [PATCH 10/14] 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 47466d31f0..fdc9bd85b7 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -25575,3 +25575,27 @@ is the cythonized version of @code{fractions.Fraction}.") "@code{pathvalidate} is a Python library to sanitize/validate strings representing paths or filenames.") (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.3