3
5
Fork 0
mirror of git://git.savannah.gnu.org/guix.git synced 2023-12-14 03:33:07 +01:00

gnu: Add python-msgpack.

* gnu/packages/python.scm (python-msgpack, python2-msgpack): New variables.

Signed-off-by: Alex Kost <alezost@gmail.com>
This commit is contained in:
Leo Famulari 2015-09-01 17:33:52 -04:00 committed by Alex Kost
parent 89b2e0b0b8
commit 641c9871a5

View file

@ -4713,3 +4713,28 @@ should be stored on various operating systems.")
(define-public python2-llfuse
(package-with-python2 python-llfuse))
(define-public python-msgpack
(package
(name "python-msgpack")
(version "0.4.6")
(source (origin
(method url-fetch)
(uri (string-append
"https://pypi.python.org/packages/source/m/"
"msgpack-python/msgpack-python-" version ".tar.gz"))
(sha256
(base32
"1527c76b6fn4zzkgfq5xvhh7x9a9686g7fjiz717rw5vklf5ik5z"))))
(build-system python-build-system)
(native-inputs
`(("python-setuptools" ,python-setuptools)))
(synopsis "MessagePack (de)serializer")
(description "MessagePack is a fast, compact binary serialization format,
suitable for similar data to JSON. This package provides CPython bindings for
reading and writing MessagePack data.")
(home-page "https://pypi.python.org/pypi/msgpack-python/")
(license asl2.0)))
(define-public python2-msgpack
(package-with-python2 python-msgpack))