mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 23:46:13 -05: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:
parent
89b2e0b0b8
commit
641c9871a5
1 changed files with 25 additions and 0 deletions
|
@ -4713,3 +4713,28 @@ (define-public python-llfuse
|
|||
|
||||
(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))
|
||||
|
|
Loading…
Reference in a new issue