gnu: Add python-munch.

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

Signed-off-by: Leo Famulari <leo@famulari.name>
This commit is contained in:
ng0 2016-12-21 11:47:12 +00:00 committed by Leo Famulari
parent 9f21414de4
commit 460fccd4b3
No known key found for this signature in database
GPG Key ID: 2646FA30BACA7F08
1 changed files with 21 additions and 0 deletions

View File

@ -3347,6 +3347,27 @@ capabilities.")
(define python2-numpy-bootstrap (define python2-numpy-bootstrap
(package-with-python2 python-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 (define-public python2-fastlmm
(package (package
(name "python2-fastlmm") (name "python2-fastlmm")