From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:56878) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1i3hrr-0002SP-1t for guix-patches@gnu.org; Fri, 30 Aug 2019 10:27:13 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1i3hrp-0002Xo-J3 for guix-patches@gnu.org; Fri, 30 Aug 2019 10:27:10 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:45851) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1i3hro-0002R3-Bs for guix-patches@gnu.org; Fri, 30 Aug 2019 10:27:09 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1i3hro-0003qx-5z for guix-patches@gnu.org; Fri, 30 Aug 2019 10:27:08 -0400 Subject: [bug#37234] [PATCH 14/21] gnu: Add python-jsondiff. Resent-Message-ID: From: Marius Bakke Date: Fri, 30 Aug 2019 16:25:32 +0200 Message-Id: <20190830142539.28376-14-mbakke@fastmail.com> In-Reply-To: <20190830142539.28376-1-mbakke@fastmail.com> References: <20190830142539.28376-1-mbakke@fastmail.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 37234@debbugs.gnu.org * 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