[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
05/07: gnu: Add python-jmespath.
From: |
David Thompson |
Subject: |
05/07: gnu: Add python-jmespath. |
Date: |
Tue, 02 Feb 2016 14:27:07 +0000 |
davexunit pushed a commit to branch master
in repository guix.
commit ba9da248a6e23e2203a5e412b3688c0c648e68da
Author: David Thompson <address@hidden>
Date: Mon Dec 7 16:22:00 2015 -0500
gnu: Add python-jmespath.
* gnu/packages/python.scm (python-jmespath): New variable.
---
gnu/packages/python.scm | 24 ++++++++++++++++++++++++
1 files changed, 24 insertions(+), 0 deletions(-)
diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm
index 6be6511..5e046a1 100644
--- a/gnu/packages/python.scm
+++ b/gnu/packages/python.scm
@@ -7356,3 +7356,27 @@ servers.")
(define-public python2-tox
(package-with-python2 python-tox))
+
+(define-public python-jmespath
+ (package
+ (name "python-jmespath")
+ (version "0.9.0")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (pypi-uri "jmespath" version))
+ (sha256
+ (base32
+ "0g9xvl69y7nr3w7ag4fsp6sm4fqf6vrqjw7504x2hzrrsh3ampq8"))))
+ (build-system python-build-system)
+ (inputs
+ `(("python-setuptools" ,python-setuptools)))
+ (synopsis "JSON Matching Expressions")
+ (description "JMESPath (pronounced “james path”) is a Python library that
+allows one to declaratively specify how to extract elements from a JSON
+document.")
+ (home-page "https://github.com/jmespath/jmespath.py")
+ (license license:expat)))
+
+(define-public python2-jmespath
+ (package-with-python2 python-jmespath))
- branch master updated (ce294c0 -> f861b8b), David Thompson, 2016/02/02
- 02/07: gnu: Add python-rsa., David Thompson, 2016/02/02
- 01/07: gnu: Add python-colorama., David Thompson, 2016/02/02
- 06/07: gnu: Add python-botocore., David Thompson, 2016/02/02
- 05/07: gnu: Add python-jmespath.,
David Thompson <=
- 04/07: gnu: Add python-tox., David Thompson, 2016/02/02
- 07/07: gnu: Add awscli., David Thompson, 2016/02/02
- 03/07: gnu: Add python-pluggy., David Thompson, 2016/02/02