sharlatan pushed a commit to branch python-team
in repository guix.
commit 3750ab8c10787965d8b6d89fa431c4603ce32bfb
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Wed Nov 6 22:03:43 2024 +0000
gnu: python-defusedxml: Update to 0.7.1.
* gnu/packages/xml.scm (python-defusedxml): Update to 0.7.1.
[native-inputs]: Add python-setuptools and python-wheel.
Change-Id: Id6fd8fbc302f4c6a47d1b269efa9318a6e52919f
---
gnu/packages/xml.scm | 12 +++++++-----
1 file changed, 7 insertions(+), 5 deletions(-)
diff --git a/gnu/packages/xml.scm b/gnu/packages/xml.scm
index 0ac9c85e77..5bbd1dd64e 100644
--- a/gnu/packages/xml.scm
+++ b/gnu/packages/xml.scm
@@ -1479,16 +1479,18 @@ files. It is designed to be fast and to handle large
input files.")
(define-public python-defusedxml
(package
(name "python-defusedxml")
- (version "0.6.0")
+ (version "0.7.1")
(source
(origin
(method url-fetch)
(uri (pypi-uri "defusedxml" version))
(sha256
- (base32
- "1xbp8fivl3wlbyg2jrvs4lalaqv1xp9a9f29p75wdx2s2d6h717n"))))
- (build-system python-build-system)
- (home-page "https://bitbucket.org/tiran/defusedxml")
+ (base32 "0s9ym98jrd819v4arv9gmcr6mgljhxd9q866sxi5p4c5n4nh7cqv"))))
+ (build-system pyproject-build-system)
+ (home-page "https://github.com/tiran/defusedxml")
+ (native-inputs
+ (list python-setuptools
+ python-wheel))
(synopsis "XML bomb protection for Python stdlib modules")
(description
"Defusedxml provides XML bomb protection for Python stdlib modules.")