From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:48176) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dH2Sn-0001n3-Ri for guix-patches@gnu.org; Sat, 03 Jun 2017 02:23:07 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dH2Sl-0004Gs-7D for guix-patches@gnu.org; Sat, 03 Jun 2017 02:23:05 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:49652) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1dH2Sl-0004GT-3z for guix-patches@gnu.org; Sat, 03 Jun 2017 02:23:03 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1dH2Sk-0001yx-Tl for guix-patches@gnu.org; Sat, 03 Jun 2017 02:23:02 -0400 Subject: bug#27071: [PATCH v2 1/8] gnu: Add python-jsonpointer. Resent-Message-ID: From: Danny Milosavljevic Date: Sat, 3 Jun 2017 08:22:09 +0200 Message-Id: <20170603062216.13375-2-dannym@scratchpost.org> In-Reply-To: <20170603062216.13375-1-dannym@scratchpost.org> References: <20170527155446.1b8c0f14@scratchpost.org> <20170603062216.13375-1-dannym@scratchpost.org> 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: 27071@debbugs.gnu.org * gnu/packages/python.scm (python-jsonpointer, python2-jsonpointer): New variables. --- gnu/packages/python.scm | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index 7617490bd..621443e2f 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -14926,3 +14926,24 @@ Supported metrics are: (define-public python2-radon (package-with-python2 python-radon)) + +(define-public python-jsonpointer + (package + (name "python-jsonpointer") + (version "1.10") + (source + (origin + (method url-fetch) + (uri (pypi-uri "jsonpointer" version)) + (sha256 + (base32 + "1cg0gvgqjysydv6p45v4jywg1jb3v48c7m3cbpi57zgf6nndr9cz")))) + (build-system python-build-system) + (home-page "https://github.com/stefankoegl/python-json-pointer") + (synopsis "Identify specific nodes in a JSON document") + (description "@code{jsonpointer} allows you to access specific nodes +by path in a JSON document (see RFC 6901).") + (license license:bsd-3))) + +(define-public python2-jsonpointer + (package-with-python2 python-jsonpointer))