From 0fdca05c08a114df484472b4ff554cddff569dd1 Mon Sep 17 00:00:00 2001 From: Sharlatan Hellseher Date: Fri, 5 Sep 2025 12:37:38 +0100 Subject: [PATCH] gnu: python-libxml2: Switch to pyproject. * gnu/packages/xml.scm (python-libxml2)[build-system]: Switch to pypojrect-build-system. [native-inputs]: Add python-setuptools. Change-Id: I4a8ac976b9bdb508f4c1efa4b29407a96615aeb2 --- gnu/packages/xml.scm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/gnu/packages/xml.scm b/gnu/packages/xml.scm index 433da105e35e917ff90250a0b40ba6bcaa291db3..5e9a7e3c829bbd4dead53e00df741bc0ab6d38a6 100644 --- a/gnu/packages/xml.scm +++ b/gnu/packages/xml.scm @@ -327,7 +327,7 @@ to output XPath results with a null delimiter."))) (patches (append (search-patches "python-libxml2-utf8.patch") (origin-patches (package-source libxml2)))))) - (build-system python-build-system) + (build-system pyproject-build-system) (outputs '("out")) (arguments (list @@ -345,6 +345,7 @@ to output XPath results with a null delimiter."))) ;; provide the absolute directory name. (("/opt/include") (dirname libxml2-headers))))))))) + (native-inputs (list python-setuptools)) (inputs (list libxml2)) (synopsis "Python bindings for the libxml2 library")))