guix-commits
[Top][All Lists]
Advanced

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

04/10: gnu: Add python-munch.


From: Leo Famulari
Subject: 04/10: gnu: Add python-munch.
Date: Thu, 29 Dec 2016 03:42:32 +0000 (UTC)

lfam pushed a commit to branch master
in repository guix.

commit 460fccd4b3e6f2f595202747981046c7af103c59
Author: ng0 <address@hidden>
Date:   Wed Dec 21 11:47:12 2016 +0000

    gnu: Add python-munch.
    
    * gnu/packages/python.scm (python-munch, python2-munch): New variables.
    
    Signed-off-by: Leo Famulari <address@hidden>
---
 gnu/packages/python.scm |   21 +++++++++++++++++++++
 1 file changed, 21 insertions(+)

diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm
index ea06d95..a4ae51b 100644
--- a/gnu/packages/python.scm
+++ b/gnu/packages/python.scm
@@ -3347,6 +3347,27 @@ capabilities.")
 (define python2-numpy-bootstrap
   (package-with-python2 python-numpy-bootstrap))
 
+(define-public python-munch
+  (package
+    (name "python-munch")
+    (version "2.0.4")
+    (source
+      (origin
+        (method url-fetch)
+        (uri (pypi-uri "munch" version))
+        (sha256
+         (base32
+          "1cmqg91xnqx8gvnh4pmp0bfl1dfcm65d5p9mg73zz8pkjhx6h80l"))))
+    (build-system python-build-system)
+    (home-page "https://github.com/Infinidat/munch";)
+    (synopsis "Dot-accessible dictionary")
+    (description "Munch is a dot-accessible dictionary similar to JavaScript
+objects.")
+    (license license:expat)))
+
+(define-public python2-munch
+  (package-with-python2 python-munch))
+
 (define-public python2-fastlmm
   (package
     (name "python2-fastlmm")



reply via email to

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