[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#37234] [PATCH 14/21] gnu: Add python-jsondiff.
From: |
Marius Bakke |
Subject: |
[bug#37234] [PATCH 14/21] gnu: Add python-jsondiff. |
Date: |
Fri, 30 Aug 2019 16:25:32 +0200 |
* gnu/packages/python-web.scm (python-jsondiff): New public variable.
---
gnu/packages/python-web.scm | 21 +++++++++++++++++++++
1 file changed, 21 insertions(+)
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm
index a169279fcc..6695bd5e39 100644
--- a/gnu/packages/python-web.scm
+++ b/gnu/packages/python-web.scm
@@ -389,6 +389,27 @@ Swartz.")
(define-public python2-html2text
(package-with-python2 python-html2text))
+(define-public python-jsondiff
+ (package
+ (name "python-jsondiff")
+ (version "1.1.2")
+ (source (origin
+ (method url-fetch)
+ (uri (pypi-uri "jsondiff" version))
+ (sha256
+ (base32
+ "08dfs98xi7ick0mp1bkcvmw66ki3cs25nln7g8xqyjmaxj51663y"))))
+ (build-system python-build-system)
+ (arguments
+ ;; XXX: Tests depend on an unmaintained library called "nose-random".
+ `(#:tests? #f))
+ (home-page "https://github.com/xlwings/jsondiff")
+ (synopsis "Diff JSON and JSON-like structures in Python")
+ (description
+ "This package provides facilities for inspecting differences between
+data structures such as JSON, dictionaries, and sets.")
+ (license license:expat)))
+
(define-public python-jsonpickle
(package
(name "python-jsonpickle")
--
2.22.1
- [bug#37234] [PATCH 00/21] MLflow, Marius Bakke, 2019/08/30
- [bug#37234] [PATCH 01/21] gnu: Add python-gunicorn., Marius Bakke, 2019/08/30
- [bug#37234] [PATCH 02/21] gnu: Add python-databricks-cli., Marius Bakke, 2019/08/30
- [bug#37234] [PATCH 05/21] gnu: Add python-minio., Marius Bakke, 2019/08/30
- [bug#37234] [PATCH 08/21] gnu: Add python-boto3., Marius Bakke, 2019/08/30
- [bug#37234] [PATCH 14/21] gnu: Add python-jsondiff.,
Marius Bakke <=
- [bug#37234] [PATCH 06/21] gnu: python-docker-py: Propagate runtime dependency., Marius Bakke, 2019/08/30
- [bug#37234] [PATCH 09/21] gnu: python-botocore: Remove unused inputs., Marius Bakke, 2019/08/30
- [bug#37234] [PATCH 12/21] gnu: Add python-pytest-aiohttp., Marius Bakke, 2019/08/30
- [bug#37234] [PATCH 17/21] gnu: Add python-aws-sam-translator., Marius Bakke, 2019/08/30
- [bug#37234] [PATCH 07/21] gnu: python-botocore: Update to 1.12.209., Marius Bakke, 2019/08/30
- [bug#37234] [PATCH 10/21] gnu: Add python-sshpubkeys., Marius Bakke, 2019/08/30
- [bug#37234] [PATCH 18/21] gnu: Add python-cfn-lint., Marius Bakke, 2019/08/30
- [bug#37234] [PATCH 03/21] gnu: Add python-gorilla., Marius Bakke, 2019/08/30
- [bug#37234] [PATCH 13/21] gnu: Add python-aws-xray-sdk., Marius Bakke, 2019/08/30
- [bug#37234] [PATCH 16/21] gnu: Add python-boto., Marius Bakke, 2019/08/30