From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:37942) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1hzpxc-0003JU-NQ for guix-patches@gnu.org; Mon, 19 Aug 2019 18:17:09 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hzpxZ-0004O1-7u for guix-patches@gnu.org; Mon, 19 Aug 2019 18:17:07 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:51785) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1hzpxW-0004Mw-I5 for guix-patches@gnu.org; Mon, 19 Aug 2019 18:17:03 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1hzpxW-0006Jl-Cz for guix-patches@gnu.org; Mon, 19 Aug 2019 18:17:02 -0400 Subject: [bug#37090] [PATCH] gnu: Add python-elementpath. Resent-Message-ID: Received: from eggs.gnu.org ([2001:470:142:3::10]:37791) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1hzpwT-0001dZ-48 for guix-patches@gnu.org; Mon, 19 Aug 2019 18:15:59 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hzpwS-0003q3-0h for guix-patches@gnu.org; Mon, 19 Aug 2019 18:15:56 -0400 Received: from latitanza.investici.org ([82.94.249.234]:47979) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1hzpwQ-0003kR-Lp for guix-patches@gnu.org; Mon, 19 Aug 2019 18:15:55 -0400 From: Giacomo Leidi Date: Tue, 20 Aug 2019 00:15:20 +0200 Message-Id: <20190819221520.7930-1-goodoldpaul@autistici.org> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable 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: 37090@debbugs.gnu.org * gnu/packages/python-xyz.scm (python-elementpath): New variable. --- gnu/packages/python-xyz.scm | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 459d5d44e1..23227d8aef 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -64,6 +64,7 @@ ;;; Copyright =C2=A9 2019 Alex Griffin ;;; Copyright =C2=A9 2019 Pierre Langlois ;;; Copyright =C2=A9 2019 Jacob MacDonald +;;; Copyright =C2=A9 2019 Giacomo Leidi ;;; ;;; This file is part of GNU Guix. ;;; @@ -16058,3 +16059,23 @@ one-off scripts.") time-or-computationally-expensive properties quick and easy and works in= Python 2 or 3.") (license license:bsd-3))) + +(define-public python-elementpath + (package + (name "python-elementpath") + (version "1.2.0") + (source + (origin + (method url-fetch) + (uri (pypi-uri "elementpath" version)) + (sha256 + (base32 + "1syn2z543brab23dskh3fjd9pqvz6npqbcicrs2d88dbg26xl08p")))) + (build-system python-build-system) + (home-page + "https://github.com/sissaschool/elementpath") + (synopsis + "XPath 1.0/2.0 parsers and selectors for ElementTree and lxml") + (description + "XPath 1.0/2.0 parsers and selectors for ElementTree and lxml") + (license license:expat))) --=20 2.23.0