summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gnu/packages/xml.scm10
1 files changed, 10 insertions, 0 deletions
diff --git a/gnu/packages/xml.scm b/gnu/packages/xml.scm
index ae2c9ee8cb1..5efcfcb6bc9 100644
--- a/gnu/packages/xml.scm
+++ b/gnu/packages/xml.scm
@@ -2075,6 +2075,16 @@ finding schema's elements and attributes; and can encode and decode
2075XML data to JSON and other formats.") 2075XML data to JSON and other formats.")
2076 (license license:expat))) 2076 (license license:expat)))
2077 2077
2078(define-public python-xmlschema-bootstrap
2079 (hidden-package
2080 (package/inherit python-xmlschema
2081 (arguments
2082 (list #:tests? #f
2083 #:phases
2084 #~(modify-phases %standard-phases
2085 (delete 'sanity-check))))
2086 (propagated-inputs '()))))
2087
2078(define-public python-xmltodict 2088(define-public python-xmltodict
2079 (package 2089 (package
2080 (name "python-xmltodict") 2090 (name "python-xmltodict")