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
parent
b2ac2508b0
commit
c6f008d626
|
@ -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")
|
||||
|
|
Reference in New Issue