From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:48173) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dH2Sn-0001n0-RL 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-0004HU-LH for guix-patches@gnu.org; Sat, 03 Jun 2017 02:23:05 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:49653) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1dH2Sl-0004HL-I5 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 1dH2Sl-0001z4-C2 for guix-patches@gnu.org; Sat, 03 Jun 2017 02:23:03 -0400 Subject: bug#27071: [PATCH v2 2/8] gnu: Add python-rfc3987. Resent-Message-ID: From: Danny Milosavljevic Date: Sat, 3 Jun 2017 08:22:10 +0200 Message-Id: <20170603062216.13375-3-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-rfc3987, python2-rfc3987): 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 621443e2f..98d114301 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -14947,3 +14947,24 @@ by path in a JSON document (see RFC 6901).") (define-public python2-jsonpointer (package-with-python2 python-jsonpointer)) + +(define-public python-rfc3987 + (package + (name "python-rfc3987") + (version "1.3.7") + (source + (origin + (method url-fetch) + (uri (pypi-uri "rfc3987" version)) + (sha256 + (base32 + "192pclzs2y0yaywqkrlvd0x73740q310kvqvm6jldhi619mq59wi")))) + (build-system python-build-system) + (home-page "http://pypi.python.org/pypi/rfc3987") + (synopsis "Parsing and validation of URIs (RFC 3986) and IRIs (RFC 3987)") + (description "@code{rfc3987} provides routines for parsing and +validation of URIs (see RFC 3986) and IRIs (see RFC 3987).") + (license license:gpl3+))) + +(define-public python2-rfc3987 + (package-with-python2 python-rfc3987))