guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

04/05: gnu: Add python-msgpack.


From: Alex Kost
Subject: 04/05: gnu: Add python-msgpack.
Date: Wed, 02 Sep 2015 18:57:06 +0000

alezost pushed a commit to branch master
in repository guix.

commit 641c9871a5b903ea4cf3fbfa127a5bf2c8372542
Author: Leo Famulari <address@hidden>
Date:   Tue Sep 1 17:33:52 2015 -0400

    gnu: Add python-msgpack.
    
    * gnu/packages/python.scm (python-msgpack, python2-msgpack): New variables.
    
    Signed-off-by: Alex Kost <address@hidden>
---
 gnu/packages/python.scm |   25 +++++++++++++++++++++++++
 1 files changed, 25 insertions(+), 0 deletions(-)

diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm
index 68bcbf5..313c625 100644
--- a/gnu/packages/python.scm
+++ b/gnu/packages/python.scm
@@ -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))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]