guix_mirror_bot pushed a commit to branch python-team
in repository guix.
commit f410f66ce5c7915c315386c0353f563653d5de9b
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Sat Aug 16 22:43:40 2025 +0100
gnu: Add python-xmlschema-bootstrap.
* gnu/packages/xml.scm (python-xmlschema-bootstrap): New variable.
Change-Id: I2b5ae32a3157c57a8e89a2d14b314404043a0a5c
---
gnu/packages/xml.scm | 10 ++++++++++
1 file changed, 10 insertions(+)
diff --git a/gnu/packages/xml.scm b/gnu/packages/xml.scm
index e77007d70b..589cf85ecb 100644
--- a/gnu/packages/xml.scm
+++ b/gnu/packages/xml.scm
@@ -2068,6 +2068,16 @@ finding schema's elements and attributes; and can encode
and decode
XML data to JSON and other formats.")
(license license:expat)))
+(define-public python-xmlschema-bootstrap
+ (hidden-package
+ (package/inherit python-xmlschema
+ (arguments
+ (list #:tests? #f
+ #:phases
+ #~(modify-phases %standard-phases
+ (delete 'sanity-check))))
+ (propagated-inputs '()))))
+
(define-public python-xmltodict
(package
(name "python-xmltodict")