diff options
author | Nicolas Graves <ngraves@ngraves.fr> | 2024-05-10 00:54:03 +0200 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-12-13 20:18:55 +0000 |
commit | 2ae38bc72f1a9780fbc39de2e312b383e35aa22d (patch) | |
tree | b045ac367f3a331ab6d0f71f9480d1312ac1a9c3 | |
parent | 4f1e509142d0f488011deafd73c6b52aae312aa7 (diff) | |
download | guix-2ae38bc72f1a9780fbc39de2e312b383e35aa22d.tar.gz guix-2ae38bc72f1a9780fbc39de2e312b383e35aa22d.zip |
gnu: python-xmltodict: Move to pyproject-build-system.
* gnu/packages/xml.scm (python-xmltodict):
[build-system]: Move to pyproject-build-system.
[native-inputs]: Add python-setuptools and python-wheel.
Change-Id: Ifb8f3f4aa56255ca596d9c8ae5ae41be479daf90
Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
-rw-r--r-- | gnu/packages/xml.scm | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/gnu/packages/xml.scm b/gnu/packages/xml.scm index 181b90ae24..0ac9c85e77 100644 --- a/gnu/packages/xml.scm +++ b/gnu/packages/xml.scm @@ -34,6 +34,7 @@ ;;; Copyright © 2021 David Larsson <david.larsson@selfhosted.xyz> ;;; Copyright © 2021 Matthew James Kraai <kraai@ftbfs.org> ;;; Copyright © 2023 Bruno Victal <mirai@makinata.eu> +;;; Copyright © 2024 Nicolas Graves <ngraves@ngraves.fr> ;;; Copyright © 2024 gemmaro <gemmaro.dev@gmail.com> ;;; ;;; This file is part of GNU Guix. @@ -69,6 +70,7 @@ #:use-module (gnu packages nss) #:use-module (gnu packages perl) #:use-module (gnu packages perl-check) + #:use-module (gnu packages python-build) #:use-module (gnu packages python) #:use-module (gnu packages tls) #:use-module (gnu packages web) @@ -83,6 +85,7 @@ #:use-module (guix build-system meson) #:use-module (guix build-system perl) #:use-module (guix build-system python) + #:use-module (guix build-system pyproject) #:use-module (guix deprecation) #:use-module (guix utils) #:use-module (guix search-paths) @@ -1972,9 +1975,9 @@ XML data to JSON and other formats.") (sha256 (base32 "08cadlb9vsb4pmzc99lz3a2lx6qcfazyvgk10pcqijvyxlwcdn2h")))) - (build-system python-build-system) + (build-system pyproject-build-system) (native-inputs - (list python-coverage python-nose)) + (list python-coverage python-nose python-setuptools python-wheel)) (home-page "https://github.com/martinblech/xmltodict") (synopsis "Work with XML like you are working with JSON") (description "This package provides a Python library to convert XML to |