summaryrefslogtreecommitdiff
path: root/gnu/packages
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2025-08-16 22:43:41 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-09-25 09:35:37 +0100
commit0d0211a113323fcc53d7c6cc936ca7143b16d370 (patch)
tree9df70b5310694cf8469e12fa785caf3c3660fda0 /gnu/packages
parentd3e3103fc3d8858d0017538450315245b74d6219 (diff)
gnu: python-elementpath: Update to 5.0.4.
* gnu/packages/xml.scm (python-elementpath): Update to 5.0.4. [build-system]: Use pyproject. [native-inputs]: Add python-setuptools. Change-Id: I03f0a0c46644946370694fceb3a68c3c03dccb59
Diffstat (limited to 'gnu/packages')
-rw-r--r--gnu/packages/xml.scm14
1 files changed, 7 insertions, 7 deletions
diff --git a/gnu/packages/xml.scm b/gnu/packages/xml.scm
index 5e9a7e3c829..84c2077d440 100644
--- a/gnu/packages/xml.scm
+++ b/gnu/packages/xml.scm
@@ -1899,22 +1899,22 @@ The central program included in this package is @code{onsgmls}, which replaces
1899(define-public python-elementpath 1899(define-public python-elementpath
1900 (package 1900 (package
1901 (name "python-elementpath") 1901 (name "python-elementpath")
1902 (version "2.0.3") 1902 (version "5.0.4")
1903 (source 1903 (source
1904 (origin 1904 (origin
1905 (method url-fetch) 1905 (method url-fetch)
1906 (uri (pypi-uri "elementpath" version)) 1906 (uri (pypi-uri "elementpath" version))
1907 (sha256 1907 (sha256
1908 (base32 1908 (base32
1909 "1kxx573ywqfh6j6aih2i6hhsya6kz79qq4bgz6yskwk6b18jyr8z")))) 1909 "1yr5ka198p1c1yw0dpmvz5mvxr6b29mz64hb2vxax53fbmb97vc5"))))
1910 (build-system python-build-system) 1910 (build-system pyproject-build-system)
1911 ;; The test suite is not run, to avoid a dependency cycle with 1911 ;; The test suite is not run, to avoid a dependency cycle with
1912 ;; python-xmlschema. 1912 ;; python-xmlschema.
1913 (arguments `(#:tests? #f)) 1913 (arguments `(#:tests? #f))
1914 (home-page 1914 (native-inputs
1915 "https://github.com/sissaschool/elementpath") 1915 (list python-setuptools))
1916 (synopsis 1916 (home-page "https://github.com/sissaschool/elementpath")
1917 "XPath 1.0/2.0 parsers and selectors for ElementTree and lxml") 1917 (synopsis "XPath 1.0/2.0 parsers and selectors for ElementTree and lxml")
1918 (description 1918 (description
1919 "The proposal of this package is to provide XPath 1.0 and 2.0 selectors 1919 "The proposal of this package is to provide XPath 1.0 and 2.0 selectors
1920for Python's ElementTree XML data structures, both for the standard 1920for Python's ElementTree XML data structures, both for the standard