me
/
guix
Archived
1
0
Fork 0

gnu: Add python-msgpack-python.

* gnu/packages/python-xyz.scm (python-msgpack-python): New public variable.

Signed-off-by: Mathieu Othacehe <m.othacehe@gmail.com>
master
Tanguy Le Carrour 2019-10-28 15:41:34 +01:00 committed by Mathieu Othacehe
parent b2ac2508b0
commit c6f008d626
No known key found for this signature in database
GPG Key ID: 8354763531769CA6
1 changed files with 21 additions and 0 deletions

View File

@ -10708,6 +10708,27 @@ more, possibly remote, memcached servers.")
interfaces.")
(license license:expat)))
(define-public python-msgpack-python
(package
(name "python-msgpack-python")
(version "0.5.6")
(source
(origin
(method url-fetch)
(uri (pypi-uri "msgpack-python" version))
(sha256
(base32
"16wh8qgybmfh4pjp8vfv78mdlkxfmcasg78lzlnm6nslsfkci31p"))))
(build-system python-build-system)
(home-page "http://msgpack.org/")
(synopsis "Package to deserialize messages in MessagePack binary format")
(description
"MessagePack is an efficient binary serialization format. It lets you
exchange data among multiple languages like JSON. But it's faster and
smaller. Small integers are encoded into a single byte, and typical short
strings require only one extra byte in addition to the strings themselves.")
(license license:asl2.0)))
(define-public python-lazy-object-proxy
(package
(name "python-lazy-object-proxy")