From f88686cee2991cc3b116f856930c0473de08f65f Mon Sep 17 00:00:00 2001 From: Ryan Sundberg Date: Tue, 4 May 2021 22:28:06 -0700 Subject: [PATCH 19/55] python-lxml: upgrade to latest (4.6.3) --- gnu/packages/xml.scm | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/gnu/packages/xml.scm b/gnu/packages/xml.scm index 9743086b1e..e7ea0f4cf3 100644 --- a/gnu/packages/xml.scm +++ b/gnu/packages/xml.scm @@ -68,6 +68,7 @@ #:use-module (gnu packages perl) #:use-module (gnu packages perl-check) #:use-module (gnu packages python) + #:use-module (gnu packages python-xyz) #:use-module (gnu packages tls) #:use-module (gnu packages web) #:use-module ((guix licenses) #:prefix license:) @@ -2592,13 +2593,13 @@ because lxml.etree already has it's own implementation of XPath 1.0.") (define-public python-lxml (package (name "python-lxml") - (version "4.4.2") + (version "4.6.3") (source (origin (method url-fetch) (uri (pypi-uri "lxml" version)) (sha256 - (base32 "01nvb5j8vs9nk4z5s3250b1m22b4d08kffa36if3g1mdygdrvxpg")))) + (base32 "0s14r1w2x9sdlcsw8mxiqgw4rz5zs5lpqpxrfyn4a1mkndqqbdrr")))) (build-system python-build-system) (arguments `(#:phases (modify-phases %standard-phases @@ -2607,7 +2608,8 @@ because lxml.etree already has it's own implementation of XPath 1.0.") (invoke "make" "test")))))) (inputs `(("libxml2" ,libxml2) - ("libxslt" ,libxslt))) + ("libxslt" ,libxslt) + ("python-cython" ,python-cython))) (home-page "https://lxml.de/") (synopsis "Python XML processing library") (description -- 2.31.1