gnu: shadow: Update home page.
[jackhill/guix/guix.git] / gnu / packages / xml.scm
CommitLineData
d0414883 1;;; GNU Guix --- Functional package management for GNU
ed4263fc 2;;; Copyright © 2013, 2014, 2015, 2016, 2018 Ludovic Courtès <ludo@gnu.org>
0899144f 3;;; Copyright © 2013, 2015 Andreas Enge <andreas@enge.fr>
b715dbac 4;;; Copyright © 2015 Eric Bavier <bavier@member.fsf.org>
10ac0f9f 5;;; Copyright © 2015 Sou Bunnbu <iyzsong@gmail.com>
5c1cf7f3 6;;; Copyright © 2015, 2016, 2017, 2018 Ricardo Wurmus <rekado@elephly.net>
96fd87c9 7;;; Copyright © 2015, 2016, 2017 Mark H Weaver <mhw@netris.org>
0efb6452 8;;; Copyright © 2015, 2016, 2017, 2018 Efraim Flashner <efraim@flashner.co.il>
fe9451c5 9;;; Copyright © 2015 Raimon Grau <raimonster@gmail.com>
c74c7c13 10;;; Copyright © 2016 Mathieu Lirzin <mthl@gnu.org>
e9f62e52 11;;; Copyright © 2016, 2017 Leo Famulari <leo@famulari.name>
5eec378b 12;;; Copyright © 2016 Ben Woodcroft <donttrustben@gmail.com>
19c33040 13;;; Copyright © 2016 Jan Nieuwenhuizen <janneke@gnu.org>
47956fa0 14;;; Copyright © 2016, 2017 ng0 <ng0@n0.is>
17634f0b 15;;; Copyright © 2016, 2017, 2018, 2019 Tobias Geerinckx-Rice <me@tobias.gr>
b4c9a317 16;;; Copyright © 2016, 2017, 2018 Marius Bakke <mbakke@fastmail.com>
f9f67fcb 17;;; Copyright © 2017 Adriano Peluso <catonano@gmail.com>
5bc2d579 18;;; Copyright © 2017 Gregor Giesen <giesen@zaehlwerk.net>
76fed2b3 19;;; Copyright © 2017 Alex Vong <alexvong1995@gmail.com>
3b695802 20;;; Copyright © 2017 Petter <petter@mykolab.ch>
767d24e8 21;;; Copyright © 2017 Stefan Reichör <stefan@xsteve.at>
2cce23bf 22;;; Copyright © 2018 Pierre Neidhardt <mail@ambrevar.xyz>
d0414883
LC
23;;;
24;;; This file is part of GNU Guix.
25;;;
26;;; GNU Guix is free software; you can redistribute it and/or modify it
27;;; under the terms of the GNU General Public License as published by
28;;; the Free Software Foundation; either version 3 of the License, or (at
29;;; your option) any later version.
30;;;
31;;; GNU Guix is distributed in the hope that it will be useful, but
32;;; WITHOUT ANY WARRANTY; without even the implied warranty of
33;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
34;;; GNU General Public License for more details.
35;;;
36;;; You should have received a copy of the GNU General Public License
37;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
38
1ffa7090 39(define-module (gnu packages xml)
f0444eaf 40 #:use-module (gnu packages)
0899144f 41 #:use-module (gnu packages autotools)
79a0eabd 42 #:use-module (gnu packages check)
322cbda7 43 #:use-module (gnu packages compression)
2cce23bf 44 #:use-module (gnu packages curl)
58cc3b38 45 #:use-module (gnu packages gnupg)
1a17ca26 46 #:use-module (gnu packages java)
aff0cce9 47 #:use-module (gnu packages nss)
f0444eaf 48 #:use-module (gnu packages perl)
5ccde207 49 #:use-module (gnu packages perl-check)
f0444eaf 50 #:use-module (gnu packages python)
a7fd7b68 51 #:use-module (gnu packages tls)
ad871fc6 52 #:use-module (gnu packages web)
b5b73a82 53 #:use-module ((guix licenses) #:prefix license:)
d0414883
LC
54 #:use-module (guix packages)
55 #:use-module (guix download)
3047c7ba 56 #:use-module (guix git-download)
77d7b57c 57 #:use-module (guix build-system ant)
6ce212b8 58 #:use-module (guix build-system cmake)
2a1e82bb 59 #:use-module (guix build-system gnu)
37f9ff63 60 #:use-module (guix build-system perl)
7ce32242 61 #:use-module (guix build-system python)
e4aab734
RW
62 #:use-module (gnu packages linux)
63 #:use-module (gnu packages pkg-config))
d0414883
LC
64
65(define-public expat
66 (package
67 (name "expat")
1c61a086 68 (version "2.2.6")
d0414883
LC
69 (source (origin
70 (method url-fetch)
71 (uri (string-append "mirror://sourceforge/expat/expat/"
51514e69 72 version "/expat-" version ".tar.bz2"))
d0414883
LC
73 (sha256
74 (base32
1c61a086 75 "1wl1x93b5w457ddsdgj0lh7yjq4q6l7wfbgwhagkc8fm2qkkrd0p"))))
d0414883 76 (build-system gnu-build-system)
e5e33f90 77 (home-page "https://libexpat.github.io/")
9e771e3b 78 (synopsis "Stream-oriented XML parser library written in C")
d0414883
LC
79 (description
80 "Expat is an XML parser library written in C. It is a
81stream-oriented parser in which an application registers handlers for
82things the parser might find in the XML document (like start tags).")
83 (license license:expat)))
f0444eaf 84
5bc2d579
GG
85(define-public libebml
86 (package
87 (name "libebml")
bc48088b 88 (version "1.3.9")
5bc2d579
GG
89 (source
90 (origin
91 (method url-fetch)
079321fa
TGR
92 (uri (string-append "https://dl.matroska.org/downloads/libebml/"
93 "libebml-" version ".tar.xz"))
5bc2d579 94 (sha256
bc48088b 95 (base32 "0j65r6i7s2k67c8f9wa653mqpxmfhdl67kjxrc1n5910ig6wddn6"))))
f3d89181
TGR
96 (build-system cmake-build-system)
97 (arguments
98 `(#:configure-flags
99 (list "-DBUILD_SHARED_LIBS=YES")
100 #:tests? #f)) ; no test suite
a040db6d 101 (home-page "https://matroska-org.github.io/libebml/")
cb778117
TGR
102 (synopsis "C++ library to parse EBML files")
103 (description "libebml is a C++ library to read and write @dfn{EBML}
104(Extensible Binary Meta Language) files. EBML was designed to be a simplified
105binary extension of XML for the purpose of storing and manipulating data in a
5bc2d579
GG
106hierarchical form with variable field lengths.")
107 (license license:lgpl2.1)))
108
f0444eaf
AE
109(define-public libxml2
110 (package
111 (name "libxml2")
1b5292ca 112 (version "2.9.8")
f0444eaf
AE
113 (source (origin
114 (method url-fetch)
115 (uri (string-append "ftp://xmlsoft.org/libxml2/libxml2-"
116 version ".tar.gz"))
117 (sha256
118 (base32
1b5292ca 119 "0ci7is75bwqqw2p32vxvrk6ds51ik7qgx73m920rakv5jlayax0b"))))
f0444eaf 120 (build-system gnu-build-system)
5f8642ea
MB
121 (outputs '("out" "static"))
122 (arguments
123 `(#:phases (modify-phases %standard-phases
124 (add-after 'install 'move-static-libs
125 (lambda* (#:key outputs #:allow-other-keys)
126 (let ((src (string-append (assoc-ref outputs "out") "/lib"))
127 (dst (string-append (assoc-ref outputs "static")
128 "/lib")))
129 (mkdir-p dst)
130 (for-each (lambda (ar)
131 (rename-file ar (string-append dst "/"
132 (basename ar))))
133 (find-files src "\\.a$"))
134 #t))))))
f0444eaf 135 (home-page "http://www.xmlsoft.org/")
35b9e423 136 (synopsis "C parser for XML")
7ba79d5d 137 (inputs `(("xz" ,xz)))
c1944c92 138 (propagated-inputs `(("zlib" ,zlib))) ; libxml2.la says '-lz'.
7ce32242 139 (native-inputs `(("perl" ,perl)))
2a8d4401
LC
140 ;; $XML_CATALOG_FILES lists 'catalog.xml' files found in under the 'xml'
141 ;; sub-directory of any given package.
74528069
LC
142 (native-search-paths (list (search-path-specification
143 (variable "XML_CATALOG_FILES")
144 (separator " ")
145 (files '("xml"))
146 (file-pattern "^catalog\\.xml$")
147 (file-type 'regular))))
2a8d4401 148 (search-paths native-search-paths)
f0444eaf 149 (description
7c125ce0
AK
150 "Libxml2 is the XML C parser and toolkit developed for the Gnome
151project (but it is usable outside of the Gnome platform).")
f0444eaf 152 (license license:x11)))
58cc3b38 153
7ce32242 154(define-public python-libxml2
e428b2c0 155 (package/inherit libxml2
7ce32242
SB
156 (name "python-libxml2")
157 (build-system python-build-system)
d3028f5b 158 (outputs '("out"))
7ce32242
SB
159 (arguments
160 `(;; XXX: Tests are specified in 'Makefile.am', but not in 'setup.py'.
161 #:tests? #f
162 #:phases
163 (modify-phases %standard-phases
164 (add-before
165 'build 'configure
166 (lambda* (#:key inputs #:allow-other-keys)
167 (chdir "python")
168 (let ((glibc (assoc-ref inputs ,(if (%current-target-system)
169 "cross-libc" "libc")))
170 (libxml2 (assoc-ref inputs "libxml2")))
171 (substitute* "setup.py"
172 ;; For 'libxml2/libxml/tree.h'.
173 (("ROOT = r'/usr'")
174 (format #f "ROOT = r'~a'" libxml2))
175 ;; For 'iconv.h'.
176 (("/opt/include")
aa6f87a2
MW
177 (string-append glibc "/include"))))
178 #t)))))
7ce32242
SB
179 (inputs `(("libxml2" ,libxml2)))
180 (synopsis "Python bindings for the libxml2 library")))
181
182(define-public python2-libxml2
183 (package-with-python2 python-libxml2))
184
58cc3b38
AE
185(define-public libxslt
186 (package
187 (name "libxslt")
16cc6a9d 188 (version "1.1.32")
58cc3b38
AE
189 (source (origin
190 (method url-fetch)
191 (uri (string-append "ftp://xmlsoft.org/libxslt/libxslt-"
192 version ".tar.gz"))
193 (sha256
194 (base32
16cc6a9d 195 "0q2l6m56iv3ysxgm2walhg4c9wp7q183jb328687i9zlp85csvjj"))
28b33172 196 (patches (search-patches "libxslt-generated-ids.patch"))))
58cc3b38
AE
197 (build-system gnu-build-system)
198 (home-page "http://xmlsoft.org/XSLT/index.html")
35b9e423 199 (synopsis "C library for applying XSLT stylesheets to XML documents")
58cc3b38
AE
200 (inputs `(("libgcrypt" ,libgcrypt)
201 ("libxml2" ,libxml2)
95288fcc 202 ("python" ,python-minimal-wrapper)
11e3f107 203 ("zlib" ,zlib)))
58cc3b38 204 (description
35b9e423 205 "Libxslt is an XSLT C library developed for the GNOME project. It is
58cc3b38
AE
206based on libxml for XML parsing, tree manipulation and XPath support.")
207 (license license:x11)))
2a1e82bb 208
5eec378b
BW
209(define-public perl-graph-readwrite
210 (package
211 (name "perl-graph-readwrite")
ffbc7d65 212 (version "2.09")
5eec378b
BW
213 (source
214 (origin
215 (method url-fetch)
216 (uri (string-append
217 "mirror://cpan/authors/id/N/NE/NEILB/Graph-ReadWrite-"
218 version
219 ".tar.gz"))
220 (sha256
221 (base32
ffbc7d65 222 "0jlsg64pmy6ka5q5gy851nnyfgjzvhyxc576bhns3vi2x5ng07mh"))))
5eec378b
BW
223 (build-system perl-build-system)
224 (propagated-inputs
225 `(("perl-graph" ,perl-graph)
226 ("perl-parse-yapp" ,perl-parse-yapp)
227 ("perl-xml-parser" ,perl-xml-parser)
228 ("perl-xml-writer" ,perl-xml-writer)))
9aba9b12 229 (home-page "https://metacpan.org/release/Graph-ReadWrite")
5eec378b
BW
230 (synopsis "Modules for reading and writing directed graphs")
231 (description "This is a collection of perl classes for reading and writing
232directed graphs in a variety of file formats. The graphs are represented in
233Perl using Jarkko Hietaniemi's @code{Graph} classes.
234
235There are two base classes. @code{Graph::Reader} is the base class for classes
236which read a graph file and create an instance of the Graph class.
237@code{Graph::Writer} is the base class for classes which take an instance of
238the @code{Graph} class and write it out in a specific file format.")
2f3108ad 239 (license license:perl-license)))
5eec378b 240
b2696a58 241(define-public perl-xml-atom
242 (package
243 (name "perl-xml-atom")
522f1995 244 (version "0.42")
b2696a58 245 (source (origin
246 (method url-fetch)
247 (uri (string-append "mirror://cpan/authors/id/M/MI/MIYAGAWA/"
248 "XML-Atom-" version ".tar.gz"))
249 (sha256
250 (base32
522f1995 251 "1wa8kfy1w4mg7kzxim4whyprkn48a2il6fap0b947zywknw4c6y6"))))
b2696a58 252 (build-system perl-build-system)
522f1995
MB
253 (arguments
254 `(#:phases
255 (modify-phases %standard-phases
256 (add-before 'check 'set-perl-search-path
257 (lambda _
258 (setenv "PERL5LIB"
259 (string-append (getcwd) ":"
260 (getenv "PERL5LIB")))
261 #t)))))
b2696a58 262 (native-inputs
50632f0a
TGR
263 ;; TODO package: perl-datetime-format-atom
264 `(("perl-html-tagset" ,perl-html-tagset)
522f1995 265 ("perl-module-build-tiny" ,perl-module-build-tiny)
50632f0a
TGR
266 ("perl-module-install" ,perl-module-install)))
267 (propagated-inputs
b2696a58 268 `(("perl-class-data-inheritable" ,perl-class-data-inheritable)
269 ("perl-datetime" ,perl-datetime)
270 ("perl-datetime-timezone" ,perl-datetime-timezone)
271 ("perl-digest-sha1" ,perl-digest-sha1)
272 ("perl-libwww" ,perl-libwww)
273 ("perl-uri" ,perl-uri)
274 ("perl-xml-libxml" ,perl-xml-libxml)
275 ("perl-xml-xpath" ,perl-xml-xpath)))
9aba9b12 276 (home-page "https://metacpan.org/release/XML-Atom")
b2696a58 277 (synopsis "Atom feed and API implementation")
278 (description
279 "Atom is a syndication, API, and archiving format for weblogs and other data.
280@code{XML::Atom} implements the feed format as well as a client for the API.")
2f3108ad 281 (license license:perl-license)))
b2696a58 282
d66fa696
MB
283(define-public perl-xml-descent
284 (package
285 (name "perl-xml-descent")
286 (version "1.04")
287 (source (origin
288 (method url-fetch)
289 (uri (string-append "mirror://cpan/authors/id/A/AN/ANDYA/"
290 "XML-Descent-" version ".tar.gz"))
291 (sha256
292 (base32
293 "0l5xmw2hd95ypppz3lyvp4sn02ccsikzjwacli3ydxfdz1bbh4d7"))))
294 (build-system perl-build-system)
295 (native-inputs
296 `(("perl-module-build" ,perl-module-build)))
297 (propagated-inputs
298 `(("perl-test-differences" ,perl-test-differences)
299 ("perl-xml-tokeparser" ,perl-xml-tokeparser)))
9aba9b12 300 (home-page "https://metacpan.org/release/XML-Descent")
d66fa696
MB
301 (synopsis "Recursive descent XML parsing")
302 (description
303 "The conventional models for parsing XML are either @dfn{DOM}
304(a data structure representing the entire document tree is created) or
305@dfn{SAX} (callbacks are issued for each element in the XML).
306
307XML grammar is recursive - so it's nice to be able to write recursive
308parsers for it. @code{XML::Descent} allows such parsers to be created.")
2f3108ad 309 (license license:perl-license)))
d66fa696 310
2a1e82bb
LC
311(define-public perl-xml-parser
312 (package
313 (name "perl-xml-parser")
d495634b 314 (version "2.44")
2a1e82bb
LC
315 (source (origin
316 (method url-fetch)
317 (uri (string-append
2b8c5f54 318 "mirror://cpan/authors/id/T/TO/TODDR/XML-Parser-"
2a1e82bb
LC
319 version ".tar.gz"))
320 (sha256
321 (base32
d495634b 322 "05ij0g6bfn27iaggxf8nl5rhlwx6f6p6xmdav6rjcly3x5zd1s8s"))))
2a1e82bb
LC
323 (build-system perl-build-system)
324 (arguments `(#:make-maker-flags
325 (let ((expat (assoc-ref %build-inputs "expat")))
326 (list (string-append "EXPATLIBPATH=" expat "/lib")
327 (string-append "EXPATINCPATH=" expat "/include")))))
328 (inputs `(("expat" ,expat)))
2f3108ad 329 (license license:perl-license)
2a1e82bb
LC
330 (synopsis "Perl bindings to the Expat XML parsing library")
331 (description
332 "This module provides ways to parse XML documents. It is built on top of
333XML::Parser::Expat, which is a lower level interface to James Clark's expat
334library. Each call to one of the parsing methods creates a new instance of
335XML::Parser::Expat which is then used to parse the document. Expat options
336may be provided when the XML::Parser object is created. These options are
337then passed on to the Expat object on each parse call. They can also be given
338as extra arguments to the parse methods, in which case they override options
339given at XML::Parser creation time.")
9aba9b12 340 (home-page "https://metacpan.org/release/XML-Parser")))
37f9ff63 341
62b28f19
MB
342(define-public perl-xml-tokeparser
343 (package
344 (name "perl-xml-tokeparser")
345 (version "0.05")
346 (source (origin
347 (method url-fetch)
348 (uri (string-append "mirror://cpan/authors/id/P/PO/PODMASTER/"
349 "XML-TokeParser-" version ".tar.gz"))
350 (sha256
351 (base32
352 "1hnpwb3lh6cbgwvjjgqzcp6jm4mp612qn6ili38adc9nhkwv8fc5"))))
353 (build-system perl-build-system)
354 (propagated-inputs `(("perl-xml-parser" ,perl-xml-parser)))
9aba9b12 355 (home-page "https://metacpan.org/release/XML-TokeParser")
62b28f19
MB
356 (synopsis "Simplified interface to XML::Parser")
357 (description
358 "@code{XML::TokeParser} provides a procedural (\"pull mode\") interface
359to @code{XML::Parser} in much the same way that Gisle Aas'
360@code{HTML::TokeParser} provides a procedural interface to @code{HTML::Parser}.
361@code{XML::TokeParser} splits its XML input up into \"tokens\", each
362corresponding to an @code{XML::Parser} event.")
2f3108ad 363 (license license:perl-license)))
62b28f19 364
7339fbe2 365(define-public perl-libxml
1385ba4f 366 (package
7339fbe2 367 (name "perl-libxml")
1385ba4f
AE
368 (version "0.08")
369 (source (origin
370 (method url-fetch)
371 (uri (string-append
372 "mirror://cpan/authors/id/K/KM/KMACLEOD/libxml-perl-"
373 version ".tar.gz"))
374 (sha256
375 (base32
376 "1jy9af0ljyzj7wakqli0437zb2vrbplqj4xhab7bfj2xgfdhawa5"))))
377 (build-system perl-build-system)
7b81406a 378 (propagated-inputs
1385ba4f 379 `(("perl-xml-parser" ,perl-xml-parser)))
2f3108ad 380 (license license:perl-license)
2db5f9b6 381 (synopsis "Perl modules for working with XML")
1385ba4f 382 (description
2db5f9b6
TGR
383 "libxml-perl is a collection of smaller Perl modules, scripts, and
384documents for working with XML in Perl. libxml-perl software works in
385combination with @code{XML::Parser}, PerlSAX, @code{XML::DOM},
386@code{XML::Grove}, and others.")
9aba9b12 387 (home-page "https://metacpan.org/release/libxml-perl")))
1385ba4f 388
3dd6bee1
EB
389(define-public perl-xml-libxml
390 (package
391 (name "perl-xml-libxml")
d71184f8 392 (version "2.0134")
3dd6bee1
EB
393 (source
394 (origin
395 (method url-fetch)
396 (uri (string-append "mirror://cpan/authors/id/S/SH/SHLOMIF/"
397 "XML-LibXML-" version ".tar.gz"))
398 (sha256
399 (base32
d71184f8 400 "1ks69xymv6zkj7hvaymjvb78ch81abri7kg4zrwxhdfsqb8a9g7h"))))
3dd6bee1
EB
401 (build-system perl-build-system)
402 (propagated-inputs
403 `(("perl-xml-namespacesupport" ,perl-xml-namespacesupport)
404 ("perl-xml-sax" ,perl-xml-sax)))
405 (inputs
406 `(("libxml2" ,libxml2)))
9aba9b12 407 (home-page "https://metacpan.org/release/XML-LibXML")
3dd6bee1
EB
408 (synopsis "Perl interface to libxml2")
409 (description "This module implements a Perl interface to the libxml2
54c3c140 410library which provides interfaces for parsing and manipulating XML files. This
3dd6bee1
EB
411module allows Perl programmers to make use of the highly capable validating
412XML parser and the high performance DOM implementation.")
2f3108ad 413 (license license:perl-license)))
3dd6bee1 414
f7c4dc2f
RW
415(define-public perl-xml-libxml-simple
416 (package
417 (name "perl-xml-libxml-simple")
d21fb90a 418 (version "0.99")
f7c4dc2f
RW
419 (source (origin
420 (method url-fetch)
421 (uri (string-append "mirror://cpan/authors/id/M/MA/MARKOV/"
422 "XML-LibXML-Simple-" version ".tar.gz"))
423 (sha256
424 (base32
d21fb90a 425 "0i4ybiqdnvnbfxqslw2y392kvy7i752dl8n99bqiqv5kzk4lbzhl"))))
f7c4dc2f
RW
426 (build-system perl-build-system)
427 (propagated-inputs
428 `(("perl-file-slurp-tiny" ,perl-file-slurp-tiny)
429 ("perl-xml-libxml" ,perl-xml-libxml)))
9aba9b12 430 (home-page "https://metacpan.org/release/XML-LibXML-Simple")
f7c4dc2f
RW
431 (synopsis "XML::LibXML based XML::Simple clone")
432 (description
433 "This package provides the same API as @code{XML::Simple} but is based on
434@code{XML::LibXML}.")
2f3108ad 435 (license license:perl-license)))
f7c4dc2f 436
93863a5e
RW
437(define-public perl-xml-libxslt
438 (package
439 (name "perl-xml-libxslt")
73a3e98f 440 (version "1.96")
93863a5e
RW
441 (source
442 (origin
443 (method url-fetch)
444 (uri (string-append "mirror://cpan/authors/id/S/SH/SHLOMIF/"
445 "XML-LibXSLT-" version ".tar.gz"))
446 (sha256
447 (base32
73a3e98f 448 "0wyl8klgr65j8y8fzgwz9jlvfjwvxazna8j3dg9gksd2v973fpia"))))
93863a5e
RW
449 (build-system perl-build-system)
450 (inputs
451 `(("libxslt" ,libxslt)))
452 (propagated-inputs
453 `(("perl-xml-libxml" ,perl-xml-libxml)))
9aba9b12 454 (home-page "https://metacpan.org/release/XML-LibXSLT")
93863a5e
RW
455 (synopsis "Perl bindings to GNOME libxslt library")
456 (description "This Perl module is an interface to the GNOME project's
457libxslt library.")
2f3108ad 458 (license license:perl-license)))
93863a5e 459
b715dbac
EB
460(define-public perl-xml-namespacesupport
461 (package
462 (name "perl-xml-namespacesupport")
88958ee0 463 (version "1.12")
b715dbac
EB
464 (source
465 (origin
466 (method url-fetch)
467 (uri (string-append "mirror://cpan/authors/id/P/PE/PERIGRIN/"
468 "XML-NamespaceSupport-" version ".tar.gz"))
469 (sha256
470 (base32
88958ee0 471 "1vz5pbi4lm5fhq2slrs2hlp6bnk29863abgjlcx43l4dky2rbsa7"))))
b715dbac 472 (build-system perl-build-system)
9aba9b12 473 (home-page "https://metacpan.org/release/XML-NamespaceSupport")
b715dbac
EB
474 (synopsis "XML namespace support class")
475 (description "This module offers a simple to process namespaced XML
476names (unames) from within any application that may need them. It also helps
477maintain a prefix to namespace URI map, and provides a number of basic
478checks.")
2f3108ad 479 (license license:perl-license)))
b715dbac 480
a022b23f 481(define-public perl-xml-rss
482 (package
483 (name "perl-xml-rss")
b5de208e 484 (version "1.60")
a022b23f 485 (source (origin
486 (method url-fetch)
487 (uri (string-append "mirror://cpan/authors/id/S/SH/SHLOMIF/"
488 "XML-RSS-" version ".tar.gz"))
489 (sha256
490 (base32
b5de208e 491 "0xw6aaqka3vqwbv152sbh6fbi8j306q1gvg7v83br8miif3mjcsb"))))
a022b23f 492 (build-system perl-build-system)
493 (native-inputs
494 `(("perl-module-build" ,perl-module-build)
495 ("perl-test-manifest" ,perl-test-manifest)
496 ("perl-test-differences" ,perl-test-differences)
497 ("perl-test-pod" ,perl-test-pod)
498 ("perl-test-pod-coverage" ,perl-test-pod-coverage)))
499 ;; XXX: The test which uses this modules does not run, even when it is included
500 ;; it is ignored. ("perl-test-trailingspace" ,perl-test-trailingspace)
501 (inputs
502 `(("perl-datetime" ,perl-datetime)
503 ("perl-datetime-format-mail" ,perl-datetime-format-mail)
504 ("perl-datetime-format-w3cdtf" ,perl-datetime-format-w3cdtf)
505 ("perl-html-parser" ,perl-html-parser)
506 ("perl-xml-parser" ,perl-xml-parser)))
9aba9b12 507 (home-page "https://metacpan.org/release/XML-RSS")
a022b23f 508 (synopsis "Creates and updates RSS files")
509 (description
510 "This module provides a basic framework for creating and maintaining
511RDF Site Summary (RSS) files. This distribution also contains many examples
512that allow you to generate HTML from an RSS, convert between 0.9, 0.91, and
5131.0 version, and more.")
2f3108ad 514 (license license:perl-license)))
a022b23f 515
18b8bbb3
EB
516(define-public perl-xml-sax
517 (package
518 (name "perl-xml-sax")
14eb5434 519 (version "1.00")
18b8bbb3
EB
520 (source
521 (origin
522 (method url-fetch)
523 (uri (string-append "mirror://cpan/authors/id/G/GR/GRANTM/"
524 "XML-SAX-" version ".tar.gz"))
525 (sha256
526 (base32
14eb5434 527 "1qra9k3wszjxvsgbragl55z3qba4nri0ipmjaxfib4l6xxj6bsj5"))))
18b8bbb3
EB
528 (build-system perl-build-system)
529 (propagated-inputs
530 `(("perl-xml-namespacesupport" ,perl-xml-namespacesupport)
531 ("perl-xml-sax-base" ,perl-xml-sax-base)))
532 (arguments
533 `(#:phases (modify-phases %standard-phases
534 (add-before
40b084a3 535 'install 'augment-path
18b8bbb3
EB
536 ;; The install target tries to load the newly-installed
537 ;; XML::SAX module, but can't find it, so we need to tell
538 ;; perl where to look.
539 (lambda* (#:key outputs #:allow-other-keys)
540 (setenv "PERL5LIB"
541 (string-append (getenv "PERL5LIB") ":"
542 (assoc-ref outputs "out")
aa6f87a2
MW
543 "/lib/perl5/site_perl"))
544 #t)))))
9aba9b12 545 (home-page "https://metacpan.org/release/XML-SAX")
18b8bbb3
EB
546 (synopsis "Perl API for XML")
547 (description "XML::SAX consists of several framework classes for using and
548building Perl SAX2 XML parsers, filters, and drivers.")
2f3108ad 549 (license license:perl-license)))
18b8bbb3 550
1ed6d5bc
EB
551(define-public perl-xml-sax-base
552 (package
553 (name "perl-xml-sax-base")
fa964e96 554 (version "1.09")
1ed6d5bc
EB
555 (source
556 (origin
557 (method url-fetch)
558 (uri (string-append "mirror://cpan/authors/id/G/GR/GRANTM/"
559 "XML-SAX-Base-" version ".tar.gz"))
560 (sha256
561 (base32
fa964e96 562 "1l1ai9g1z11ja7mvnfl5mj346r13jyckbg9qlw6c2izglidkbjv6"))))
1ed6d5bc 563 (build-system perl-build-system)
9aba9b12 564 (home-page "https://metacpan.org/release/XML-SAX-Base")
1ed6d5bc
EB
565 (synopsis "Base class for SAX Drivers and Filters")
566 (description "This module has a very simple task - to be a base class for
567PerlSAX drivers and filters. It's default behaviour is to pass the input
568directly to the output unchanged. It can be useful to use this module as a
569base class so you don't have to, for example, implement the characters()
570callback.")
2f3108ad 571 (license license:perl-license)))
1ed6d5bc 572
535dc6cf
AE
573(define-public perl-xml-simple
574 (package
575 (name "perl-xml-simple")
fa3fff43 576 (version "2.25")
535dc6cf
AE
577 (source (origin
578 (method url-fetch)
579 (uri (string-append
580 "mirror://cpan/authors/id/G/GR/GRANTM/XML-Simple-"
581 version ".tar.gz"))
582 (sha256
583 (base32
fa3fff43 584 "1y6vh328zrh085d40852v4ij2l4g0amxykswxd1nfhd2pspds7sk"))))
535dc6cf 585 (build-system perl-build-system)
27ef7f45 586 (propagated-inputs
e831256f
EF
587 `(("perl-xml-parser" ,perl-xml-parser)
588 ("perl-xml-sax" ,perl-xml-sax)))
2f3108ad 589 (license license:perl-license)
535dc6cf
AE
590 (synopsis "Perl module for easy reading/writing of XML files")
591 (description
592 "The XML::Simple module provides a simple API layer on top of an
593underlying XML parsing module (either XML::Parser or one of the SAX2
594parser modules).")
9aba9b12 595 (home-page "https://metacpan.org/release/XML-Simple")))
535dc6cf 596
a2e520af
AE
597(define-public perl-xml-regexp
598 (package
599 (name "perl-xml-regexp")
600 (version "0.04")
601 (source (origin
602 (method url-fetch)
603 (uri (string-append
604 "mirror://cpan/authors/id/T/TJ/TJMATHER/XML-RegExp-"
605 version ".tar.gz"))
606 (sha256
607 (base32
608 "0m7wj00a2kik7wj0azhs1zagwazqh3hlz4255n75q21nc04r06fz"))))
609 (build-system perl-build-system)
610 (inputs
611 `(("perl-xml-parser" ,perl-xml-parser)))
2f3108ad 612 (license license:perl-license)
a2e520af
AE
613 (synopsis "Perl regular expressions for XML tokens")
614 (description
615 "XML::RegExp contains regular expressions for the following XML tokens:
616BaseChar, Ideographic, Letter, Digit, Extender, CombiningChar, NameChar,
617EntityRef, CharRef, Reference, Name, NmToken, and AttValue.")
9aba9b12 618 (home-page "https://metacpan.org/release/XML-RegExp")))
a2e520af 619
ad871fc6
AE
620(define-public perl-xml-dom
621 (package
622 (name "perl-xml-dom")
4e5465f2 623 (version "1.46")
ad871fc6
AE
624 (source (origin
625 (method url-fetch)
626 (uri (string-append
627 "mirror://cpan/authors/id/T/TJ/TJMATHER/XML-DOM-"
628 version ".tar.gz"))
629 (sha256
630 (base32
4e5465f2 631 "0phpkc4li43m2g44hdcvyxzy9pymqwlqhh5hwp2xc0cv8l5lp8lb"))))
ad871fc6 632 (build-system perl-build-system)
f7faff88
AE
633 (propagated-inputs
634 `(("perl-libwww" ,perl-libwww)
ad871fc6 635 ("perl-libxml" ,perl-libxml)
4e5465f2 636 ("perl-xml-parser" ,perl-xml-parser)
ad871fc6 637 ("perl-xml-regexp" ,perl-xml-regexp)))
2f3108ad 638 (license license:perl-license)
ad871fc6
AE
639 (synopsis
640 "Perl module for building DOM Level 1 compliant document structures")
641 (description
642 "This module extends the XML::Parser module by Clark Cooper. The
643XML::Parser module is built on top of XML::Parser::Expat, which is a lower
644level interface to James Clark's expat library. XML::DOM::Parser is derived
645from XML::Parser. It parses XML strings or files and builds a data structure
646that conforms to the API of the Document Object Model.")
9aba9b12 647 (home-page "https://metacpan.org/release/XML-DOM")))
ad871fc6 648
649e1676
RW
649(define-public perl-xml-compile-tester
650 (package
651 (name "perl-xml-compile-tester")
9af5a513 652 (version "0.91")
649e1676
RW
653 (source (origin
654 (method url-fetch)
655 (uri (string-append "mirror://cpan/authors/id/M/MA/MARKOV/"
656 "XML-Compile-Tester-" version ".tar.gz"))
657 (sha256
658 (base32
9af5a513 659 "1drzwziwi96rfkh48qpw4l225mcbk8ppl2157nj92cslcpwwdk75"))))
649e1676
RW
660 (build-system perl-build-system)
661 (propagated-inputs
662 `(("perl-log-report" ,perl-log-report)
663 ("perl-test-deep" ,perl-test-deep)))
9aba9b12 664 (home-page "https://metacpan.org/release/XML-Compile-Tester")
649e1676
RW
665 (synopsis "XML::Compile related regression testing")
666 (description
667 "The @code{XML::Compile} module suite has extensive regression testing.
668This module provide functions which simplify writing tests for
669@code{XML::Compile} related distributions.")
2f3108ad 670 (license license:perl-license)))
649e1676 671
b494a5f1
RW
672(define-public perl-xml-compile
673 (package
674 (name "perl-xml-compile")
107976ac 675 (version "1.62")
b494a5f1
RW
676 (source (origin
677 (method url-fetch)
678 (uri (string-append "mirror://cpan/authors/id/M/MA/MARKOV/"
679 "XML-Compile-" version ".tar.gz"))
680 (sha256
681 (base32
107976ac 682 "0a75gr4qcjj8ybzljacbbkdxprbqpypz49bc0jb7cfamx1hp7p2w"))))
b494a5f1
RW
683 (build-system perl-build-system)
684 (propagated-inputs
174988fa
TGR
685 `(("perl-carp" ,perl-carp)
686 ("perl-log-report" ,perl-log-report)
b494a5f1
RW
687 ("perl-xml-compile-tester" ,perl-xml-compile-tester)
688 ("perl-xml-libxml" ,perl-xml-libxml)
174988fa
TGR
689 ("perl-scalar-list-utils" ,perl-scalar-list-utils)
690 ("perl-test-deep" ,perl-test-deep)
691 ("perl-types-serialiser" ,perl-types-serialiser)))
9aba9b12 692 (home-page "https://metacpan.org/release/XML-Compile")
b494a5f1
RW
693 (synopsis "Compilation-based XML processing")
694 (description
695 "@code{XML::Compile} can be used to translate a Perl data-structure into
696XML or XML into a Perl data-structure, both directions under rigid control by
697a schema.")
2f3108ad 698 (license license:perl-license)))
b494a5f1 699
c1d41b5d
RW
700(define-public perl-xml-compile-cache
701 (package
702 (name "perl-xml-compile-cache")
503a0059 703 (version "1.06")
c1d41b5d
RW
704 (source (origin
705 (method url-fetch)
706 (uri (string-append "mirror://cpan/authors/id/M/MA/MARKOV/"
707 "XML-Compile-Cache-" version ".tar.gz"))
708 (sha256
709 (base32
503a0059 710 "181qf1s7ymgi7saph3cf9p6dbxkxyh1ja23na4dchhi8v5mi66sr"))))
c1d41b5d
RW
711 (build-system perl-build-system)
712 (propagated-inputs
713 `(("perl-log-report" ,perl-log-report)
714 ("perl-xml-compile" ,perl-xml-compile)
715 ("perl-xml-compile-tester" ,perl-xml-compile-tester)
716 ("perl-xml-libxml-simple" ,perl-xml-libxml-simple)))
9aba9b12 717 (home-page "https://metacpan.org/release/XML-Compile-Cache")
c1d41b5d
RW
718 (synopsis "Cache compiled XML translators")
719 (description
720 "This package provides methods to cache compiled XML translators.")
2f3108ad 721 (license license:perl-license)))
c1d41b5d 722
baeab9b8
RW
723(define-public perl-xml-compile-soap
724 (package
725 (name "perl-xml-compile-soap")
1d9b041c 726 (version "3.24")
baeab9b8
RW
727 (source (origin
728 (method url-fetch)
729 (uri (string-append "mirror://cpan/authors/id/M/MA/MARKOV/"
730 "XML-Compile-SOAP-" version ".tar.gz"))
731 (sha256
732 (base32
1d9b041c 733 "0pkcph562l2ij7rlwlvm58v6y062qsbydfpaz2qnph2ixqy0xfd1"))))
baeab9b8
RW
734 (build-system perl-build-system)
735 (propagated-inputs
736 `(("perl-file-slurp-tiny" ,perl-file-slurp-tiny)
737 ("perl-libwww" ,perl-libwww)
738 ("perl-log-report" ,perl-log-report)
739 ("perl-xml-compile" ,perl-xml-compile)
740 ("perl-xml-compile-cache" ,perl-xml-compile-cache)
741 ("perl-xml-compile-tester" ,perl-xml-compile-tester)))
9aba9b12 742 (home-page "https://metacpan.org/release/XML-Compile-SOAP")
baeab9b8
RW
743 (synopsis "Base-class for SOAP implementations")
744 (description
745 "This module provides a class to handle the SOAP protocol. The first
746implementation is @url{SOAP1.1,
747http://www.w3.org/TR/2000/NOTE-SOAP-20000508/}, which is still most often
748used.")
2f3108ad 749 (license license:perl-license)))
baeab9b8 750
6a914948
RW
751(define-public perl-xml-compile-wsdl11
752 (package
753 (name "perl-xml-compile-wsdl11")
4b4a4f5c 754 (version "3.07")
6a914948
RW
755 (source (origin
756 (method url-fetch)
757 (uri (string-append "mirror://cpan/authors/id/M/MA/MARKOV/"
758 "XML-Compile-WSDL11-" version ".tar.gz"))
759 (sha256
760 (base32
4b4a4f5c 761 "09ayl442hzvn97q4ghn5rz4r82dm9w3l69hixhb29h9xq9ysi7ba"))))
6a914948
RW
762 (build-system perl-build-system)
763 (propagated-inputs
764 `(("perl-log-report" ,perl-log-report)
765 ("perl-xml-compile" ,perl-xml-compile)
766 ("perl-xml-compile-cache" ,perl-xml-compile-cache)
767 ("perl-xml-compile-soap" ,perl-xml-compile-soap)))
9aba9b12 768 (home-page "https://metacpan.org/release/XML-Compile-WSDL11")
6a914948
RW
769 (synopsis "Create SOAP messages defined by WSDL 1.1")
770 (description
771 "This module understands WSDL version 1.1. A WSDL file defines a set of
772messages to be send and received over SOAP connections. This involves
773encoding of the message to be send into XML, sending the message to the
774server, collect the answer, and finally decoding the XML to Perl.")
2f3108ad 775 (license license:perl-license)))
6a914948 776
246455c2 777(define-public perl-xml-feed
778 (package
779 (name "perl-xml-feed")
8dfdd746 780 (version "0.59")
246455c2 781 (source (origin
782 (method url-fetch)
783 (uri (string-append "mirror://cpan/authors/id/D/DA/DAVECROSS/"
784 "XML-Feed-" version ".tar.gz"))
785 (sha256
786 (base32
8dfdd746 787 "1z1a88bpy64j42bbyl8acbfl3dn9iaz47gx6clkgy5sbn4kr0kgk"))))
246455c2 788 (build-system perl-build-system)
789 (arguments
ddf72f50 790 `(#:tests? #f)) ; tests require internet connection
246455c2 791 (native-inputs
792 `(("perl-module-build" ,perl-module-build)
793 ("perl-uri" ,perl-uri)
794 ("perl-class-data-inheritable" ,perl-class-data-inheritable)))
795 (inputs
796 `(("perl-class-errorhandler" ,perl-class-errorhandler)
797 ("perl-datetime" ,perl-datetime)
798 ("perl-datetime-format-mail" ,perl-datetime-format-mail)
799 ("perl-datetime-format-w3cdtf" ,perl-datetime-format-w3cdtf)
800 ("perl-feed-find" ,perl-feed-find)
801 ("perl-html-parser" ,perl-html-parser)
802 ("perl-libwww-perl" ,perl-libwww)
803 ("perl-module-pluggable" ,perl-module-pluggable)
804 ("perl-uri-fetch" ,perl-uri-fetch)
805 ("perl-xml-atom" ,perl-xml-atom)
806 ("perl-xml-libxml" ,perl-xml-libxml)
807 ("perl-xml-rss" ,perl-xml-rss)))
9aba9b12 808 (home-page "https://metacpan.org/release/XML-Feed")
246455c2 809 (synopsis "XML Syndication Feed Support")
810 (description "@code{XML::Feed} is a syndication feed parser for both RSS and
811Atom feeds. It also implements feed auto-discovery for finding feeds, given a URI.
812@code{XML::Feed} supports the following syndication feed formats:
813RSS 0.91, RSS 1.0, RSS 2.0, Atom")
2f3108ad 814 (license license:perl-license)))
246455c2 815
0c1bab36 816(define-public perl-xml-xpath
817 (package
818 (name "perl-xml-xpath")
fc82538c 819 (version "1.44")
0c1bab36 820 (source (origin
821 (method url-fetch)
822 (uri (string-append "mirror://cpan/authors/id/M/MA/MANWAR/"
823 "XML-XPath-" version ".tar.gz"))
824 (sha256
825 (base32
fc82538c 826 "03yxj7w5a43ibbpiqsvb3lswj2b71dydsx4rs2fw0p8n0l3i3j8w"))))
0c1bab36 827 (build-system perl-build-system)
828 (native-inputs
829 `(("perl-path-tiny" ,perl-path-tiny)))
9332d706 830 (propagated-inputs
0c1bab36 831 `(("perl-xml-parser" ,perl-xml-parser)))
9aba9b12 832 (home-page "https://metacpan.org/release/XML-XPath")
0c1bab36 833 (synopsis "Parse and evaluate XPath statements")
834 (description
835 "This module aims to comply exactly to the @url{XPath specification,
836https://www.w3.org/TR/xpath} and yet allow extensions to be added in
837the form of functions.")
2f3108ad 838 (license license:perl-license)))
0c1bab36 839
6ce212b8
RW
840(define-public pugixml
841 (package
842 (name "pugixml")
727ffbd5 843 (version "1.9")
6ce212b8
RW
844 (source
845 (origin
846 (method url-fetch)
0562a81e
EF
847 (uri (string-append "https://github.com/zeux/pugixml/releases/download/v"
848 version "/pugixml-" version ".tar.gz"))
7fda7b8f 849 (patches (search-patches "pugixml-versioned-libdir.patch"))
6ce212b8
RW
850 (sha256
851 (base32
727ffbd5 852 "19nv3zhik3djp4blc4vrjwrl8dfhzmal8b21sq7y907nhddx6mni"))))
6ce212b8
RW
853 (build-system cmake-build-system)
854 (arguments
7fda7b8f
MB
855 `(#:configure-flags '("-DBUILD_SHARED_LIBS=ON")
856 #:tests? #f)) ;no tests
857 (native-inputs
858 `(("pkg-config" ,pkg-config)))
28655227 859 (home-page "https://pugixml.org")
6ce212b8
RW
860 (synopsis "Light-weight, simple and fast XML parser for C++ with XPath support")
861 (description
862 "pugixml is a C++ XML processing library, which consists of a DOM-like
863interface with rich traversal/modification capabilities, a fast XML parser
864which constructs the DOM tree from an XML file/buffer, and an XPath 1.0
865implementation for complex data-driven tree queries. Full Unicode support is
866also available, with Unicode interface variants and conversions between
867different Unicode encodings which happen automatically during
868parsing/saving.")
869 (license license:expat)))
870
c2efe1ae
MB
871(define-public python-pyxb
872 (package
873 (name "python-pyxb")
4ef6cfef 874 (version "1.2.6")
c2efe1ae
MB
875 (source (origin
876 (method url-fetch)
877 (uri (pypi-uri "PyXB" version))
878 (sha256
879 (base32
4ef6cfef 880 "1d17pyixbfvjyi2lb0cfp0ch8wwdf44mmg3r5pwqhyyqs66z601a"))))
c2efe1ae
MB
881 (build-system python-build-system)
882 (home-page "http://pyxb.sourceforge.net/")
883 (synopsis "Python XML Schema Bindings")
884 (description
885 "PyXB (\"pixbee\") is a pure Python package that generates Python source
886code for classes that correspond to data structures defined by XMLSchema.")
887 (license (list license:asl2.0 ; Most files.
888 license:expat ; pyxb/utils/six.py
889 license:gpl2 ; bundled jquery in doc is dual MIT/GPL2
890 license:psfl)))) ; pyxb/utils/activestate.py
891
892(define-public python2-pyxb
893 (package-with-python2 python-pyxb))
894
37f9ff63
AE
895(define-public xmlto
896 (package
897 (name "xmlto")
877a6466 898 (version "0.0.28")
37f9ff63
AE
899 (source
900 (origin
901 (method url-fetch)
7bc19c92
LF
902 ;; The old source on fedorahosted.org is offline permanently:
903 ;; <https://bugs.gnu.org/25989>
904 (uri (string-append "mirror://debian/pool/main/x/xmlto/"
905 "xmlto_" version ".orig.tar.bz2"))
906 (file-name (string-append name "-" version ".tar.bz2"))
37f9ff63
AE
907 (sha256
908 (base32
877a6466 909 "0xhj8b2pwp4vhl9y16v3dpxpsakkflfamr191mprzsspg4xdyc0i"))))
37f9ff63 910 (build-system gnu-build-system)
ae0c1202
LC
911 (arguments
912 ;; Make sure the reference to util-linux's 'getopt' is kept in 'xmlto'.
913 '(#:configure-flags (list (string-append "GETOPT="
914 (assoc-ref %build-inputs
915 "util-linux")
916 "/bin/getopt"))))
37f9ff63 917 (inputs
ae0c1202
LC
918 `(("util-linux" ,util-linux) ; for 'getopt'
919 ("libxml2" ,libxml2) ; for 'xmllint'
920 ("libxslt" ,libxslt))) ; for 'xsltproc'
37f9ff63
AE
921 (home-page "http://cyberelk.net/tim/software/xmlto/")
922 (synopsis "Front-end to an XSL toolchain")
923 (description
924 "Xmlto is a front-end to an XSL toolchain. It chooses an appropriate
925stylesheet for the conversion you want and applies it using an external
926XSL-T processor. It also performs any necessary post-processing.")
927 (license license:gpl2+)))
0899144f
AE
928
929(define-public xmlsec
930 (package
931 (name "xmlsec")
e6d78262 932 (version "1.2.28")
0899144f 933 (source (origin
50f5aa4b
TGR
934 (method url-fetch)
935 (uri (string-append "https://www.aleksey.com/xmlsec/download/"
936 "xmlsec1-" version ".tar.gz"))
937 (sha256
938 (base32
e6d78262 939 "1m12caglhyx08g8lh2sl3nkldlpryzdx2d572q73y3m33s0w9vhk"))))
0899144f 940 (build-system gnu-build-system)
50f5aa4b 941 (propagated-inputs ; according to xmlsec1.pc
0899144f
AE
942 `(("libxml2" ,libxml2)
943 ("libxslt" ,libxslt)))
944 (inputs
945 `(("gnutls" ,gnutls)
946 ("libgcrypt" ,libgcrypt)
947 ("libltdl" ,libltdl)))
e4aab734
RW
948 (native-inputs
949 `(("pkg-config" ,pkg-config)))
a5b570b4 950 (home-page "https://www.aleksey.com/xmlsec/")
0899144f
AE
951 (synopsis "XML Security Library")
952 (description
953 "The XML Security Library is a C library based on Libxml2. It
954supports XML security standards such as XML Signature, XML Encryption,
955Canonical XML (part of Libxml2) and Exclusive Canonical XML (part of
956Libxml2).")
957 (license (license:x11-style "file://COPYING"
958 "See 'COPYING' in the distribution."))))
96f8d991 959
b4c9a317
MB
960(define-public xmlsec-nss
961 (package
962 (inherit xmlsec)
963 (name "xmlsec-nss")
3825b444
TGR
964 (native-inputs
965 ;; For tests.
966 `(("nss:bin" ,nss "bin") ; for certutil
967 ,@(package-native-inputs xmlsec)))
b4c9a317
MB
968 (inputs
969 `(("nss" ,nss)
970 ("libltdl" ,libltdl)))
971 (synopsis "XML Security Library (using NSS instead of GnuTLS)")))
972
96f8d991
RW
973(define-public minixml
974 (package
975 (name "minixml")
5b59c775 976 (version "2.12")
96f8d991 977 (source (origin
b7cbcee5 978 (method url-fetch/tarbomb)
eba9ecd4 979 (uri (string-append "https://github.com/michaelrsweet/mxml/"
b7cbcee5 980 "releases/download/v" version
eba9ecd4 981 "/mxml-" version ".tar.gz"))
96f8d991
RW
982 (sha256
983 (base32
5b59c775 984 "1z8nqxa4pqdic8wpixkkgg1m2pak9wjikjjxnk3j5i0d29dbgmmg"))))
96f8d991
RW
985 (build-system gnu-build-system)
986 (arguments
5b59c775
TGR
987 `(#:configure-flags
988 (list (string-append "LDFLAGS=-Wl,-rpath="
989 (assoc-ref %outputs "out") "/lib"))
990 #:phases
b7cbcee5
TGR
991 (modify-phases %standard-phases
992 (add-after 'unpack 'fix-permissions
993 ;; FIXME: url-fetch/tarbomb resets all permissions to 555/444.
994 (lambda _
995 (for-each
996 (lambda (file)
997 (chmod file #o644))
998 (find-files "doc" "\\."))
999 #t)))
1000 #:tests? #f)) ; tests are run during build
eba9ecd4 1001 (home-page "https://michaelrsweet.github.io/mxml")
96f8d991
RW
1002 (synopsis "Small XML parsing library")
1003 (description
1004 "Mini-XML is a small C library to read and write XML files and strings in
1005UTF-8 and UTF-16 encoding.")
1006 ;; LGPL 2.0+ with additional exceptions for static linking
1007 (license license:lgpl2.0+)))
33ae9107
DT
1008
1009;; TinyXML is an unmaintained piece of software, so the patches and build
1010;; system massaging have no upstream potential.
1011(define-public tinyxml
1012 (package
1013 (name "tinyxml")
1014 (version "2.6.2")
1015 (source (origin
1016 (method url-fetch)
de67e922
LF
1017 (uri (string-append "mirror://sourceforge/tinyxml/tinyxml/"
1018 version "/tinyxml_"
33ae9107
DT
1019 (string-join (string-split version #\.) "_")
1020 ".tar.gz"))
671249b9 1021 (file-name (string-append name "-" version ".tar.gz"))
33ae9107
DT
1022 (sha256
1023 (base32
1024 "14smciid19lvkxqznfig77jxn5s4iq3jpb47vh5a6zcaqp7gvg8m"))
fc1adab1 1025 (patches (search-patches "tinyxml-use-stl.patch"))))
33ae9107
DT
1026 (build-system gnu-build-system)
1027 ;; This library is missing *a lot* of the steps to make it usable, so we
1028 ;; have to add them here, like every other distro must do.
1029 (arguments
1030 `(#:phases
1031 (modify-phases %standard-phases
1032 (delete 'configure)
1033 (add-after 'build 'build-shared-library
1034 (lambda _
0efb6452
EF
1035 (invoke "g++" "-Wall" "-O2" "-shared" "-fpic"
1036 "tinyxml.cpp" "tinyxmlerror.cpp"
1037 "tinyxmlparser.cpp" "tinystr.cpp"
1038 "-o" "libtinyxml.so")))
33ae9107 1039 (replace 'check
0efb6452 1040 (lambda _ (invoke "./xmltest")))
33ae9107
DT
1041 (replace 'install
1042 (lambda* (#:key outputs #:allow-other-keys)
1043 (let* ((out (assoc-ref outputs "out"))
1044 (include (string-append out "/include"))
1045 (lib (string-append out "/lib"))
1046 (pkgconfig (string-append out "/lib/pkgconfig"))
1047 (doc (string-append out "/share/doc")))
1048 ;; Install libs and headers.
1049 (install-file "libtinyxml.so" lib)
1050 (install-file "tinystr.h" include)
1051 (install-file "tinyxml.h" include)
1052 ;; Generate and install pkg-config file.
1053 (mkdir-p pkgconfig)
1054 ;; Software such as Kodi expect this file to be present, but
1055 ;; it's not provided in the source code.
1056 (call-with-output-file (string-append pkgconfig "/tinyxml.pc")
1057 (lambda (port)
1058 (format port "prefix=~a
1059exec_prefix=${prefix}
1060libdir=${exec_prefix}/lib
1061includedir=${prefix}/include
1062
1063Name: TinyXML
1064Description: A simple, small, C++ XML parser
1065Version: ~a
1066Libs: -L${libdir} -ltinyxml
1067Cflags: -I${includedir}
1068"
1069 out ,version)))
1070 ;; Install docs.
1071 (mkdir-p doc)
1072 (copy-recursively "docs" (string-append doc "tinyxml"))
1073 #t))))))
1074 (synopsis "Small XML parser for C++")
1075 (description "TinyXML is a small and simple XML parsing library for the
05077200 1076C++ programming language.")
33ae9107
DT
1077 (home-page "http://www.grinninglizard.com/tinyxml/index.html")
1078 (license license:zlib)))
fe9451c5 1079
931bd7f6
TGR
1080(define-public tinyxml2
1081 (package
1082 (name "tinyxml2")
c83aa292 1083 (version "7.0.1")
931bd7f6
TGR
1084 (source
1085 (origin
4bad4fbd
TGR
1086 (method git-fetch)
1087 (uri (git-reference
1088 (url "https://github.com/leethomason/tinyxml2.git")
1089 (commit version)))
1090 (file-name (git-file-name name version))
931bd7f6 1091 (sha256
c83aa292 1092 (base32 "1sf6sch1kawrna2f9dc8f4xl836acqcddkghzdib0s7dl48m9r7m"))))
931bd7f6 1093 (build-system cmake-build-system)
931bd7f6
TGR
1094 (synopsis "Small XML parser for C++")
1095 (description "TinyXML2 is a small and simple XML parsing library for the
1096C++ programming language.")
1097 (home-page "http://www.grinninglizard.com/tinyxml2/")
1098 (license license:zlib)))
1099
fe9451c5
RG
1100(define-public xmlstarlet
1101 (package
1102 (name "xmlstarlet")
1103 (version "1.6.1")
1104 (source
1105 (origin
1106 (method url-fetch)
1107 (uri (string-append "mirror://sourceforge/xmlstar/xmlstarlet/"
1108 version "/xmlstarlet-" version ".tar.gz"))
1109 (sha256
1110 (base32
1111 "1jp737nvfcf6wyb54fla868yrr39kcbijijmjpyk4lrpyg23in0m"))))
1112 (build-system gnu-build-system)
22ea0235
MB
1113 (arguments
1114 '(#:phases
1115 (modify-phases %standard-phases
1116 (add-before 'check 'drop-failing-tests
1117 (lambda _
1118 ;; FIXME: Why are these tests failing.
1119 (substitute* "Makefile"
1120 (("^examples/schema1\\\\") "\\")
1121 (("^examples/valid1\\\\") "\\"))
1122 #t)))))
fe9451c5
RG
1123 (inputs
1124 `(("libxslt" ,libxslt)
1125 ("libxml2" ,libxml2)))
1126 (home-page "http://xmlstar.sourceforge.net/")
1127 (synopsis "Command line XML toolkit")
1128 (description "XMLStarlet is a set of command line utilities which can be
1129used to transform, query, validate, and edit XML documents. XPath is used to
1130match and extract data, and elements can be added, deleted or modified using
1131XSLT and EXSLT.")
1132 (license license:x11)))
19c33040 1133
767d24e8
SR
1134(define-public html-xml-utils
1135 (package
1136 (name "html-xml-utils")
4fab0da0 1137 (version "7.7")
767d24e8
SR
1138 (source
1139 (origin
1140 (method url-fetch)
1141 (uri (string-append
1142 "https://www.w3.org/Tools/HTML-XML-utils/html-xml-utils-"
1143 version ".tar.gz"))
1144 (sha256
1145 (base32
4fab0da0 1146 "1vwqp5q276j8di9zql3kygf31z2frp2c59yjqlrvvwcvccvkcdwr"))))
767d24e8
SR
1147 (build-system gnu-build-system)
1148 (home-page "https://www.w3.org/Tools/HTML-XML-utils/")
1149 (synopsis "Command line utilities to manipulate HTML and XML files")
1150 (description "HTML-XML-utils provides a number of simple utilities for
1151manipulating and converting HTML and XML files in various ways. The suite
1152consists of the following tools:
1153
1154@itemize
1155 @item @command{asc2xml} convert from @code{UTF-8} to @code{&#nnn;} entities
1156 @item @command{xml2asc} convert from @code{&#nnn;} entities to @code{UTF-8}
1157 @item @command{hxaddid} add IDs to selected elements
1158 @item @command{hxcite} replace bibliographic references by hyperlinks
1159 @item @command{hxcite} mkbib - expand references and create bibliography
1160 @item @command{hxclean} apply heuristics to correct an HTML file
1161 @item @command{hxcopy} copy an HTML file while preserving relative links
1162 @item @command{hxcount} count elements and attributes in HTML or XML files
1163 @item @command{hxextract} extract selected elements
1164 @item @command{hxincl} expand included HTML or XML files
1165 @item @command{hxindex} create an alphabetically sorted index
1166 @item @command{hxmkbib} create bibliography from a template
1167 @item @command{hxmultitoc} create a table of contents for a set of HTML files
1168 @item @command{hxname2id} move some @code{ID=} or @code{NAME=} from A
1169elements to their parents
1170 @item @command{hxnormalize} pretty-print an HTML file
1171 @item @command{hxnsxml} convert output of hxxmlns back to normal XML
1172 @item @command{hxnum} number section headings in an HTML file
1173 @item @command{hxpipe} convert XML to a format easier to parse with Perl or AWK
1174 @item @command{hxprintlinks} number links and add table of URLs at end of an HTML file
1175 @item @command{hxprune} remove marked elements from an HTML file
1176 @item @command{hxref} generate cross-references
1177 @item @command{hxselect} extract elements that match a (CSS) selector
1178 @item @command{hxtoc} insert a table of contents in an HTML file
1179 @item @command{hxuncdata} replace CDATA sections by character entities
1180 @item @command{hxunent} replace HTML predefined character entities to @code{UTF-8}
1181 @item @command{hxunpipe} convert output of pipe back to XML format
1182 @item @command{hxunxmlns} replace \"global names\" by XML Namespace prefixes
1183 @item @command{hxwls} list links in an HTML file
1184 @item @command{hxxmlns} replace XML Namespace prefixes by \"global names\"
1185@end itemize
1186")
1187 (license license:expat)))
1188
19c33040
JN
1189(define-public xlsx2csv
1190 (package
1191 (name "xlsx2csv")
3255fc3b 1192 (version "0.7.4")
3047c7ba
TGR
1193 (source
1194 (origin
1195 (method git-fetch)
1196 (uri (git-reference
1197 (url "https://github.com/dilshod/xlsx2csv.git")
1198 (commit version)))
1199 (file-name (git-file-name name version))
1200 (sha256
1201 (base32 "168dm6p7w6pvgd87yb9hcxv9y0liv6mxgril202nfva68cp8y939"))))
19c33040
JN
1202 (build-system python-build-system)
1203 (arguments
3255fc3b 1204 `(#:python ,python-2 ; use python-2 for the test script
19c33040
JN
1205 #:phases
1206 (modify-phases %standard-phases
1207 (replace 'check
1208 (lambda _
1209 (substitute* "test/run"
3255fc3b 1210 ;; Run tests with `python' only.
19c33040 1211 (("^(PYTHON_VERSIONS = ).*" all m) (string-append m "['']")))
aa6f87a2 1212 (invoke "test/run"))))))
19c33040
JN
1213 (home-page "https://github.com/dilshod/xlsx2csv")
1214 (synopsis "XLSX to CSV converter")
1215 (description
1216 "Xlsx2csv is a program to convert Microsoft Excel 2007 XML (XLSX and
1217XLSM) format spreadsheets into plaintext @dfn{comma separated values} (CSV)
1218files. It is designed to be fast and to handle large input files.")
1219 (license license:gpl2+)))
d2b51c08 1220
1221(define-public python-defusedxml
1222 (package
1223 (name "python-defusedxml")
ca6197dd 1224 (version "0.5.0")
d2b51c08 1225 (source
1226 (origin
1227 (method url-fetch)
1228 (uri (pypi-uri "defusedxml" version))
1229 (sha256
1230 (base32
ca6197dd 1231 "1x54n0h8hl92vvwyymx883fbqpqjwn2mc8fb383bcg3z9zwz5mr4"))))
d2b51c08 1232 (build-system python-build-system)
1233 (home-page "https://bitbucket.org/tiran/defusedxml")
1234 (synopsis "XML bomb protection for Python stdlib modules")
1235 (description
1236 "Defusedxml provides XML bomb protection for Python stdlib modules.")
1237 (license license:psfl)))
1238
1239(define-public python2-defusedxml
1240 (package-with-python2 python-defusedxml))
ca8f3f9a 1241
623fb4d1
AP
1242(define-public freexl
1243 (package
1244 (name "freexl")
5275f69e 1245 (version "1.0.5")
623fb4d1
AP
1246 (source (origin
1247 (method url-fetch)
1248 (uri (string-append "http://www.gaia-gis.it/gaia-sins/"
1249 name "-" version ".tar.gz"))
1250 (sha256
1251 (base32
5275f69e 1252 "03bmwq6hngmzwpqpb7c2amqlspz4q69iv96nlf0f5c0qs98b3j9x"))))
623fb4d1
AP
1253 (build-system gnu-build-system)
1254 (home-page "https://www.gaia-gis.it/fossil/freexl/index")
1255 (synopsis "Read Excel files")
1256 (description
1257 "FreeXL is a C library to extract valid data from within an Excel (.xls)
1258spreadsheet.")
1259 ;; Any of these licenses may be picked.
1260 (license (list license:gpl2+
1261 license:lgpl2.1+
1262 license:mpl1.1))))
d00d6cea
RW
1263
1264(define-public xerces-c
1265 (package
1266 (name "xerces-c")
1267 (version "3.1.4")
1268 (source (origin
1269 (method url-fetch)
1270 (uri (string-append "mirror://apache/xerces/c/3/sources/"
1271 "xerces-c-" version ".tar.xz"))
1272 (sha256
1273 (base32
1274 "0hb29c0smqlpxj0zdm09s983z5jx37szlliccnvgh0qq91wwqwwr"))))
1275 (build-system gnu-build-system)
1276 (arguments
1277 (let ((system (or (%current-target-system)
1278 (%current-system))))
1279 (if (string-prefix? "x86_64" system)
1280 '()
1281 '(#:configure-flags '("--disable-sse2")))))
1282 (native-inputs
1283 `(("perl" ,perl)))
1284 (home-page "http://xerces.apache.org/xerces-c/")
1285 (synopsis "Validating XML parser library for C++")
1286 (description "Xerces-C++ is a validating XML parser written in a portable
1287subset of C++. Xerces-C++ makes it easy to give your application the ability
1288to read and write XML data. A shared library is provided for parsing,
1289generating, manipulating, and validating XML documents using the DOM, SAX, and
1290SAX2 APIs.")
1291 (license license:asl2.0)))
77d7b57c
RW
1292
1293(define-public java-simple-xml
1294 (package
1295 (name "java-simple-xml")
1296 (version "2.7.1")
1297 (source (origin
1298 (method url-fetch)
1299 (uri (string-append "mirror://sourceforge/simple/simple-xml-"
1300 version ".zip"))
1301 (sha256
1302 (base32
3c274149
GB
1303 "0w19k1awslmihpwsxwjbg89hv0vjhk4k3i0vrfchy3mqknd988y5"))
1304 (patches (search-patches "java-simple-xml-fix-tests.patch"))))
77d7b57c
RW
1305 (build-system ant-build-system)
1306 (arguments
1307 `(#:build-target "build"
1308 #:test-target "test"
1309 #:phases
1310 (modify-phases %standard-phases
1311 (replace 'install (install-jars "jar")))))
1312 (native-inputs
1313 `(("unzip" ,unzip)))
1314 (home-page "http://simple.sourceforge.net/")
1315 (synopsis "XML serialization framework for Java")
1316 (description "Simple is a high performance XML serialization and
1317configuration framework for Java. Its goal is to provide an XML framework
1318that enables rapid development of XML configuration and communication systems.
1319This framework aids the development of XML systems with minimal effort and
1320reduced errors. It offers full object serialization and deserialization,
1321maintaining each reference encountered.")
1322 (license license:asl2.0)))
3b695802
P
1323
1324(define-public perl-xml-xpathengine
1325 (package
1326 (name "perl-xml-xpathengine")
1327 (version "0.14")
1328 (source (origin
1329 (method url-fetch)
1330 (uri (string-append "mirror://cpan/authors/id/M/MI/MIROD/"
1331 "XML-XPathEngine-" version ".tar.gz"))
1332 (sha256
1333 (base32
1334 "0r72na14bmsxfd16s9nlza155amqww0k8wsa9x2a3sqbpp5ppznj"))))
1335 (build-system perl-build-system)
9aba9b12 1336 (home-page "https://metacpan.org/release/XML-XPathEngine")
3b695802
P
1337 (synopsis "Re-usable XPath engine for DOM-like trees")
1338 (description
1339 "This module provides an XPath engine, that can be re-used by other
1340modules/classes that implement trees.
1341
1342In order to use the XPath engine, nodes in the user module need to mimick DOM
1343nodes. The degree of similitude between the user tree and a DOM dictates how
1344much of the XPath features can be used. A module implementing all of the DOM
1345should be able to use this module very easily (you might need to add the
1346@code{cmp} method on nodes in order to get ordered result sets).")
1347 (license license:perl-license)))
9e1c3581
P
1348
1349(define-public perl-tree-xpathengine
1350 (package
1351 (name "perl-tree-xpathengine")
1352 (version "0.05")
1353 (source (origin
1354 (method url-fetch)
1355 (uri (string-append "mirror://cpan/authors/id/M/MI/MIROD/"
1356 "Tree-XPathEngine-" version ".tar.gz"))
1357 (sha256
1358 (base32
1359 "1vbbw8wxm79r3xbra8narw1dqvm34510q67wbmg2zmj6zd1k06r9"))))
1360 (build-system perl-build-system)
9aba9b12 1361 (home-page "https://metacpan.org/release/Tree-XPathEngine")
9e1c3581
P
1362 (synopsis "Re-usable XPath engine")
1363 (description
1364 "This module provides an XPath engine, that can be re-used by other
1365module/classes that implement trees. It is designed to be compatible with
1366@code{Class::XPath}, ie it passes its tests if you replace @code{Class::XPath}
1367by @code{Tree::XPathEngine}.")
1368 (license license:perl-license)))
b7c59195
P
1369
1370(define-public perl-xml-filter-buffertext
1371 (package
1372 (name "perl-xml-filter-buffertext")
1373 (version "1.01")
1374 (source
1375 (origin
1376 (method url-fetch)
1377 (uri (string-append "mirror://cpan/authors/id/R/RB/RBERJON/"
1378 "XML-Filter-BufferText-" version ".tar.gz"))
1379 (sha256
1380 (base32
1381 "0p5785c1dsk6kdp505vapb5h54k8krrz8699hpgm9igf7dni5llg"))))
1382 (build-system perl-build-system)
1383 (propagated-inputs
1384 `(("perl-xml-sax-base" ,perl-xml-sax-base)))
9aba9b12 1385 (home-page "https://metacpan.org/release/XML-Filter-BufferText")
b7c59195
P
1386 (synopsis "Filter to put all characters() in one event")
1387 (description "This is a very simple filter. One common cause of
1388grief (and programmer error) is that XML parsers aren't required to provide
1389character events in one chunk. They can, but are not forced to, and most
1390don't. This filter does the trivial but oft-repeated task of putting all
1391characters into a single event.")
1392 (license license:perl-license)))
33b592ee
P
1393
1394(define-public perl-xml-sax-writer
1395 (package
1396 (name "perl-xml-sax-writer")
1397 (version "0.57")
1398 (source (origin
1399 (method url-fetch)
1400 (uri (string-append
1401 "mirror://cpan/authors/id/P/PE/PERIGRIN/"
1402 "XML-SAX-Writer-" version ".tar.gz"))
1403 (sha256
1404 (base32
1405 "1w1cd1ybxdvhmnxdlkywi3x5ka3g4md42kyynksjc09vyizd0q9x"))))
1406 (build-system perl-build-system)
1407 (propagated-inputs
1408 `(("perl-libxml" ,perl-libxml)
1409 ("perl-xml-filter-buffertext" ,perl-xml-filter-buffertext)
c695fb76 1410 ("perl-xml-namespacesupport" ,perl-xml-namespacesupport)
33b592ee 1411 ("perl-xml-sax-base" ,perl-xml-sax-base)))
9aba9b12 1412 (home-page "https://metacpan.org/release/XML-SAX-Writer")
33b592ee
P
1413 (synopsis "SAX2 XML Writer")
1414 (description
1415 "This is an XML writer that understands SAX2. It is based on
1416@code{XML::Handler::YAWriter}.")
1417 (license license:perl-license)))
9e88b210
P
1418
1419(define-public perl-xml-handler-yawriter
1420 (package
1421 (name "perl-xml-handler-yawriter")
1422 (version "0.23")
1423 (source
1424 (origin
1425 (method url-fetch)
1426 (uri (string-append "mirror://cpan/authors/id/K/KR/KRAEHE/"
1427 "XML-Handler-YAWriter-" version ".tar.gz"))
1428 (sha256
1429 (base32
1430 "11d45a1sz862va9rry3p2m77pwvq3kpsvgwhc5ramh9mbszbnk77"))))
1431 (build-system perl-build-system)
1432 (propagated-inputs
1433 `(("perl-libxml" ,perl-libxml)))
9aba9b12 1434 (home-page "https://metacpan.org/release/XML-Handler-YAWriter")
9e88b210
P
1435 (synopsis "Yet another Perl SAX XML Writer")
1436 (description "YAWriter implements Yet Another @code{XML::Handler::Writer}.
1437It provides a flexible escaping technique and pretty printing.")
1438 (license license:perl-license)))
85f225fb
P
1439
1440(define-public perl-xml-twig
1441 (package
1442 (name "perl-xml-twig")
1443 (version "3.52")
1444 (source (origin
1445 (method url-fetch)
1446 (uri (string-append "mirror://cpan/authors/id/M/MI/MIROD/"
1447 "XML-Twig-" version ".tar.gz"))
1448 (sha256
1449 (base32
1450 "1bc0hrz4jp6199hi29sdxmb9gyy45whla9hd19yqfasgq8k5ixzy"))))
1451 (build-system perl-build-system)
1452 (inputs
1453 `(("expat" ,expat)))
1454 (propagated-inputs
1455 `(("perl-html-tidy" ,perl-html-tidy)
1456 ("perl-html-tree" ,perl-html-tree)
1457 ("perl-io-captureoutput" ,perl-io-captureoutput)
1458 ("perl-io-string" ,perl-io-string)
1459 ("perl-io-stringy" ,perl-io-stringy)
1460 ("perl-libxml" ,perl-libxml)
1461 ("perl-xml-filter-buffertext" ,perl-xml-filter-buffertext)
1462 ("perl-xml-handler-yawriter" ,perl-xml-handler-yawriter)
1463 ("perl-xml-parser" ,perl-xml-parser)
1464 ("perl-xml-sax-writer" ,perl-xml-sax-writer)
1465 ("perl-xml-simple" ,perl-xml-simple)
1466 ("perl-xml-xpathengine" ,perl-xml-xpathengine)
c695fb76 1467 ("perl-test-pod" ,perl-test-pod)
85f225fb 1468 ("perl-tree-xpathengine" ,perl-tree-xpathengine)))
9aba9b12 1469 (home-page "https://metacpan.org/release/XML-Twig")
85f225fb
P
1470 (synopsis "Perl module for processing huge XML documents in tree mode")
1471 (description "@code{XML::Twig} is an XML transformation module. Its
1472strong points: can be used to process huge documents while still being in tree
1473mode; not bound by DOM or SAX, so it is very perlish and offers a very
1474comprehensive set of methods; simple to use; DWIMs as much as possible.
1475
1476What it doesn't offer: full SAX support (it can export SAX, but only reads
1477XML), full XPath support (unless you use @code{XML::Twig::XPath}), nor DOM
1478support.")
1479 (license license:perl-license)))
1a17ca26
JL
1480
1481;; TODO: Debian builds several jars out of this: jaxp-1.4.jar,
1482;; xml-apis.jar and xml-apis-1.4.01.jar.
1483(define-public java-jaxp
1484 (package
1485 (name "java-jaxp")
1486 (version "1.4.01")
1487 (source
1488 (origin
1489 (method url-fetch)
1490 (uri (string-append "mirror://apache/xerces/xml-commons/source/"
1491 "xml-commons-external-" version "-src.tar.gz"))
1492 (sha256
1493 (base32 "0rhq32a7dl9yik7zx9h0naz2iz068qgcdiayak91wp4wr26xhjyk"))))
1494 (build-system ant-build-system)
1495 (arguments
1496 `(#:jar-name "jaxp.jar"
1497 #:jdk ,icedtea-8
1498 #:source-dir ".."
1499 #:tests? #f)); no tests
1500 (home-page "http://xerces.apache.org/xml-commons/")
1501 (synopsis "Java XML parser and transformer APIs (DOM, SAX, JAXP, TrAX)")
1502 (description "Jaxp from the Apache XML Commons project is used by
1503the Xerces-J XML parser and Xalan-J XSLT processor and specifies these APIs:
1504
1505@itemize
1506@item Document Object Model (DOM)
1507@item Simple API for XML (SAX)
1508@item Java APIs for XML Processing (JAXP)
1509@item Transformation API for XML (TrAX)
1510@item Document Object Model (DOM) Load and Save
1511@item JSR 206 Java API for XML Processing
1512@end itemize")
1513 (license (list license:asl2.0
1514 license:w3c ;; Files under org.w3c
1515 license:public-domain)))) ;; org.xml.sax
9a86ee78
JL
1516
1517(define-public java-apache-xml-commons-resolver
1518 (package
1519 (name "java-apache-xml-commons-resolver")
1520 (version "1.2")
1521 (source
1522 (origin
1523 (method url-fetch)
1524 (uri (string-append "mirror://apache/xerces/xml-commons/"
1525 "xml-commons-resolver-" version ".tar.gz"))
1526 (sha256
1527 (base32 "1zhy4anc3fg9f8y348bj88vmab15aavrg6nf419ifb25asyygnsm"))
1528 (modules '((guix build utils)))
1529 (snippet
1530 '(begin
1531 (for-each delete-file (find-files "." ".*\\.(jar|zip)"))
1532 #t))))
1533 (build-system ant-build-system)
1534 (arguments
1535 `(#:jar-name (string-append "xml-resolver.jar")
1536 #:tests? #f)); no tests
1537 (inputs
1538 `(("java-junit" ,java-junit)))
1539 (home-page "http://xerces.apache.org/xml-commons/")
1540 (synopsis "Catalog-based entity and URI resolution")
1541 (description "The resolver class implements the full semantics of OASIS Technical
1542Resolution 9401:1997 (Amendment 2 to TR 9401) catalogs and the 06 Aug
15432001 Committee Specification of OASIS XML Catalogs.
1544
1545It also includes a framework of classes designed to read catalog files
1546in a number of formats:
1547
1548@itemize
1549@item The plain-text flavor described by TR9401.
1550@item The XCatalog XML format defined by John Cowan
1551@item The XML Catalog format defined by the OASIS Entity Resolution
1552 Technical Committee.
1553@end itemize")
1554 (license license:asl2.0)))
7eae94d8
JL
1555
1556;; Jaxen requires java-dom4j and java-xom that in turn require jaxen.
1557;; This package is a bootstrap version without dependencies on dom4j and xom.
1558(define java-jaxen-bootstrap
1559 (package
1560 (name "java-jaxen-bootstrap")
1561 (version "1.1.6")
1562 (source (origin
1563 (method url-fetch)
1564 ;; No release on github
1565 (uri (string-append "https://repo1.maven.org/maven2/jaxen/jaxen/"
1566 version "/jaxen-" version "-sources.jar"))
1567 (sha256
1568 (base32
1569 "18pa8mks3gfhazmkyil8wsp6j1g1x7rggqxfv4k2mnixkrj5x1kx"))))
1570 (build-system ant-build-system)
1571 (arguments
1572 `(#:jar-name "jaxen.jar"
1573 #:source-dir "src"
1574 #:tests? #f; no tests
1575 #:phases
1576 (modify-phases %standard-phases
1577 (add-before 'build 'remove-dom4j
1578 (lambda _
1579 (delete-file-recursively "src/org/jaxen/dom4j")
1580 (delete-file-recursively "src/org/jaxen/xom")
1581 #t)))))
1582 (inputs
1583 `(("java-jdom" ,java-jdom)))
1584 (home-page "https://github.com/jaxen-xpath/jaxen")
1585 (synopsis "XPath library")
1586 (description "Jaxen is an XPath library written in Java. It is adaptable
1587to many different object models, including DOM, XOM, dom4j, and JDOM. It is
1588also possible to write adapters that treat non-XML trees such as compiled
1589Java byte code or Java beans as XML, thus enabling you to query these trees
1590with XPath too.")
1591 (license license:bsd-3)))
5552080d 1592
be0524f4
JL
1593(define-public java-jaxen
1594 (package
1595 (inherit java-jaxen-bootstrap)
1596 (name "java-jaxen")
1597 (inputs
1598 `(("java-jdom" ,java-jdom)
1599 ("java-xom" ,java-xom)
1600 ("java-dom4j" ,java-dom4j)))))
1601
5552080d
JL
1602(define-public java-xom
1603 (package
1604 (name "java-xom")
1605 (version "127")
1606 (source (origin
eed5e162
TGR
1607 (method git-fetch)
1608 (uri (git-reference
1609 (url "https://github.com/elharo/xom.git")
1610 (commit (string-append "XOM_" version))))
1611 (file-name (git-file-name name version))
5552080d
JL
1612 (sha256
1613 (base32
eed5e162 1614 "1jh6y03g5zzdhsb5jm6ms1xnamr460qmn96y3w6aw0ikfwqlg0bq"))
5552080d
JL
1615 (modules '((guix build utils)))
1616 (snippet
1617 '(begin
1618 (for-each delete-file
1619 (find-files "." "\\.jar$"))
1620 #t))))
1621 (build-system ant-build-system)
1622 (arguments
1623 `(#:jar-name "xom.jar"
1624 #:jdk ,icedtea-8
eed5e162 1625 #:tests? #f ; no tests
5552080d
JL
1626 #:phases
1627 (modify-phases %standard-phases
eed5e162
TGR
1628 (add-after 'unpack 'make-git-checkout-writable
1629 (lambda _
1630 (for-each make-file-writable (find-files "."))
1631 #t))
5552080d
JL
1632 (add-before 'configure 'fix-tagsoup-dep
1633 (lambda _
1634 ;; FIXME: Where is tagsoup source?
1635 (delete-file "src/nu/xom/tools/XHTMLJavaDoc.java")
1636 #t)))))
1637 (inputs
1638 `(("java-jdom" ,java-jdom)
1639 ("java-junit" ,java-junit)
1640 ("java-classpathx-servletapi" ,java-classpathx-servletapi)
1641 ("java-jaxen-bootstrap" ,java-jaxen-bootstrap)
1642 ("java-xerces" ,java-xerces)))
1643 (home-page "https://xom.nu/")
1644 (synopsis "XML Object Model")
1645 (description "XOM is a new XML Object Model for processing XML with Java
1646that strives for correctness and simplicity.")
1647 ;; 2.1 only
1648 (license license:lgpl2.1)))
96f31935
JL
1649
1650(define-public java-xsdlib
1651 (package
1652 (name "java-xsdlib")
1653 (version "2013.2")
1654 (source (origin
1655 (method url-fetch)
1656 (uri (string-append "http://central.maven.org/maven2/com/sun/msv/"
1657 "datatype/xsd/xsdlib/" version "/xsdlib-"
1658 version "-sources.jar"))
1659 (sha256
1660 (base32
1661 "185i48p1xp09wbq03i9zgfl701qa262rq46yf4cajzmk3336kqim"))))
1662 (build-system ant-build-system)
1663 (arguments
1664 `(#:tests? #f; no tests
1665 #:jar-name "xsdlib.jar"
1666 #:jdk ,icedtea-8))
1667 (inputs
1668 `(("java-xerces" ,java-xerces)))
1669 (home-page "http://central.maven.org/maven2/com/sun/msv/datatype/xsd/xsdlib/")
1670 (synopsis "Sun Multi-Schema Validator")
1671 (description "Xsdlib contains an implementation of sun.com.msv, an XML
1672validator.")
1673 (license license:bsd-2)))
82d7d4e1
JL
1674
1675(define-public java-xpp3
1676 (package
1677 (name "java-xpp3")
1678 (version "1.1.4")
1679 (source (origin
1680 (method url-fetch)
1681 (uri (string-append "http://www.extreme.indiana.edu/dist/"
1682 "java-repository/xpp3/distributions/xpp3-"
1683 version "_src.tgz"))
1684 (sha256
1685 (base32
1686 "1b99zrhyij5qwyhilyjdl1ykxvhk902vsvflh6gx4fir8hfvdl5p"))
1687 (modules '((guix build utils)))
1688 (snippet
1689 '(begin ;; Delete bundled jar archives.
1690 (for-each delete-file (find-files "." ".*\\.jar"))
1691 #t))))
1692 (build-system ant-build-system)
1693 (arguments
1694 `(#:tests? #f; no tests
1695 #:build-target "jar"
1696 #:phases
1697 (modify-phases %standard-phases
1698 (replace 'install (install-jars "build")))))
1699 (home-page "http://www.extreme.indiana.edu/xgws/xsoap/xpp/")
1700 (synopsis "Streaming pull XML parser")
1701 (description "Xml Pull Parser (in short XPP) is a streaming pull XML
1702parser and should be used when there is a need to process quickly and
1703efficiently all input elements (for example in SOAP processors). This
1704package is a stable XmlPull parsing engine that is based on ideas from XPP
1705and in particular XPP2 but completely revised and rewritten to take the best
1706advantage of JIT JVMs.")
1707 (license (license:non-copyleft "file://LICENSE.txt"))))
9421f682
JL
1708
1709(define-public java-xmlpull2
1710 (package
1711 (name "java-xmlpull2")
1712 (version "2.1.10")
1713 (source (origin
1714 (method url-fetch)
1715 (uri (string-append "http://www.extreme.indiana.edu/xgws/xsoap/"
1716 "PullParser/PullParser" version ".tgz"))
1717 (sha256
1718 (base32
1719 "1kw9nhyqb7bzhn2zjbwlpi5vp5rzj89amzi3hadw2acyh2dmd0md"))
1720 (modules '((guix build utils)))
1721 (snippet
1722 '(begin ;; Delete bundled jar archives.
1723 (for-each delete-file (find-files "." ".*\\.jar"))
1724 #t))))
1725 (build-system ant-build-system)
1726 (arguments
1727 `(#:tests? #f; no tests
1728 #:build-target "impl"
1729 #:phases
1730 (modify-phases %standard-phases
1731 (replace 'install (install-jars "build/lib")))))
1732 (home-page "http://www.extreme.indiana.edu/xgws/xsoap/xpp/")
1733 (synopsis "Streaming pull XML parser")
1734 (description "Xml Pull Parser (in short XPP) is a streaming pull XML
1735parser and should be used when there is a need to process quickly and
1736efficiently all input elements (for example in SOAP processors). This
1737package is in maintenance mode.")
1738 (license (license:non-copyleft "file:///LICENSE.txt"))))
605c23df
JL
1739
1740(define-public java-dom4j
1741 (package
1742 (name "java-dom4j")
1743 (version "2.1.0")
1744 (source (origin
9d670526
TGR
1745 (method git-fetch)
1746 (uri (git-reference
1747 (url "https://github.com/dom4j/dom4j.git")
1748 (commit (string-append "version-" version))))
1749 (file-name (git-file-name name version))
605c23df
JL
1750 (sha256
1751 (base32
9d670526 1752 "1827jljs8mps489fm7xw63cakdqwc5grilrr5n9spr2rlk76jpx3"))
605c23df
JL
1753 (modules '((guix build utils)))
1754 (snippet
1755 '(begin ;; Delete bundled jar archives.
1756 (for-each delete-file (find-files "." ".*\\.jar"))
1757 #t))))
1758 (build-system ant-build-system)
1759 (arguments
1760 `(#:jar-name "dom4j.jar"
1761 #:jdk ,icedtea-8
1762 #:source-dir "src/main/java"
1763 ;; FIXME: Requires xalan, but xalan depends on java-cup which has a
1764 ;; dependency on itself through jflex.
1765 #:tests? #f
1766 #:phases
1767 (modify-phases %standard-phases
1768 (add-before 'build 'copy-jaxen-sources
1769 ;; java-jaxen-bootstrap is not enough. These files have a circular
1770 ;; dependency and there is no subset of dom4j that would allow
1771 ;; breaking the circle.
1772 (lambda* (#:key inputs #:allow-other-keys)
1773 (mkdir-p "jaxen-sources")
1774 (with-directory-excursion "jaxen-sources"
1775 (system* "jar" "xf" (assoc-ref inputs "java-jaxen-sources")))
1776 (mkdir-p "src/main/java/org/jaxen/dom4j")
1777 (copy-file "jaxen-sources/org/jaxen/dom4j/DocumentNavigator.java"
1778 "src/main/java/org/jaxen/dom4j/DocumentNavigator.java")
1779 (copy-file "jaxen-sources/org/jaxen/dom4j/Dom4jXPath.java"
1780 "src/main/java/org/jaxen/dom4j/Dom4jXPath.java")
1781 #t))
1782 (add-before 'build 'fix-old-xpp2
1783 (lambda _
1784 ;; This package normally depends on xpp2 2.0, but version 2.1.10
1785 ;; is the only version whose source code is published.
1786 (substitute* "src/main/java/org/dom4j/xpp/ProxyXmlStartTag.java"
1787 (("public void resetStartTag")
1788 "public boolean removeAttributeByRawName(String name) {\n
1789 return false;\n
1790}\n
1791public boolean removeAttributeByName(String name, String name2) {\n
1792 return false;\n
1793}\n\npublic void resetStartTag")
1794 (("Atttribute") "Attribute"))
1795 #t)))))
1796 (inputs
1797 `(("java-jaxen-bootstrap" ,java-jaxen-bootstrap)
1798 ("java-jaxen-sources" ,(package-source java-jaxen-bootstrap))
1799 ("java-xmlpull2" ,java-xmlpull2)
1800 ("java-xpp3" ,java-xpp3)
1801 ("java-xsdlib" ,java-xsdlib)))
1802 (native-inputs
1803 `(("java-testng" ,java-testng)
1804 ("java-xerces" ,java-xerces)))
1805 (home-page "https://dom4j.github.io/")
1806 (synopsis "Flexible XML framework for Java")
1807 (description "Dom4j is a flexible XML framework for Java. DOM4J works
1808with DOM, SAX, XPath, and XSLT. It can parse large XML documents with very
1809low memory footprint.")
1810 ;; some BSD-like 5-clause license
1811 (license (license:non-copyleft "file://LICENSE"))))
3058d8ec
JL
1812
1813(define-public java-kxml2
1814 (package
1815 (name "java-kxml2")
1816 (version "2.4.2")
1817 (source (origin
00fc9389
TGR
1818 (method git-fetch)
1819 (uri (git-reference
1820 (url "https://github.com/stefanhaustein/kxml2.git")
1821 (commit (string-append "v" version))))
1822 (file-name (git-file-name name version))
3058d8ec
JL
1823 (sha256
1824 (base32
00fc9389 1825 "0g6d8c9r9sh3x04sf4wdpgwvhkqvk11k3kq9skx91i60h4vn01hg"))))
3058d8ec
JL
1826 (build-system ant-build-system)
1827 (arguments
1828 `(#:jar-name "kxml2.jar"
1829 #:source-dir "src/main/java"
1830 #:test-include (list "TestWb.java")
1831 ;; Test failure: it was expected to get an XML entity but got the
1832 ;; equivalent Unicode character instead.
1833 #:tests? #f
1834 #:phases
1835 (modify-phases %standard-phases
00fc9389
TGR
1836 (add-after 'unpack 'make-git-checkout-writable
1837 (lambda _
1838 (for-each make-file-writable (find-files "."))
1839 #t))
3058d8ec
JL
1840 (add-before 'build 'copy-resources
1841 (lambda _
aa6f87a2
MW
1842 (copy-recursively "src/main/resources" "build/classes")
1843 #t)))))
3058d8ec
JL
1844 (inputs
1845 `(("java-xpp3" ,java-xpp3)))
1846 (native-inputs
1847 `(("java-junit" ,java-junit)))
1848 (home-page "http://kxml.org")
1849 (synopsis "XML pull parser")
1850 (description "kXML is a small XML pull parser, specially designed for
1851constrained environments such as Applets, Personal Java or devices compliant
1852with the Mobile Information Device Profile (MIDP).")
1853 (license license:expat)))
4c7759f0
JL
1854
1855(define-public java-stax
1856 (package
1857 (name "java-stax")
1858 (version "1.2.0")
1859 (source (origin
1860 (method url-fetch)
1861 (uri (string-append "https://repo1.maven.org/maven2/stax/stax/"
1862 version "/stax-" version "-sources.jar"))
1863 (sha256
1864 (base32
1865 "04ba4qvbrps45j8bldbakxq31k7gjlsay9pppa9yn13fr00q586z"))))
1866 (build-system ant-build-system)
1867 (arguments
1868 `(#:jar-name "stax.jar"
1869 #:tests? #f; no tests
1870 #:phases
1871 (modify-phases %standard-phases
1872 (add-before 'configure 'fix-utf8
1873 (lambda _
1874 ;; This file is ISO-8859-1 but java expects UTF-8.
1875 ;; Remove special characters in comments.
1876 (with-fluids ((%default-port-encoding "ISO-8859-1"))
1877 (substitute* "src/com/wutka/dtd/Scanner.java"
1878 (("//.*") "\n")))
1879 #t)))))
1880 (home-page "https://repo1.maven.org/maven2/stax/stax/")
1881 (synopsis "Streaming API for XML")
1882 (description "This package provides the reference implementation of the
1883@dfn{Streaming API for XML} (StAX). It is used for streaming XML data to
1884and from a Java application. It provides a standard pull parser interface.")
1885 (license license:asl2.0)))
b8798817
JL
1886
1887(define-public java-jettison
1888 (package
1889 (name "java-jettison")
1890 (version "1.3.7")
1891 (source (origin
a4b96726
TGR
1892 (method git-fetch)
1893 (uri (git-reference
1894 (url "https://github.com/codehaus/jettison.git")
1895 (commit (string-append "jettison-" version))))
1896 (file-name (git-file-name name version))
b8798817
JL
1897 (sha256
1898 (base32
a4b96726 1899 "15sydmi5chdh4126qc7v8bsrp7fp4ldaya8a05iby4pq2324q0qw"))))
b8798817
JL
1900 (build-system ant-build-system)
1901 (arguments
1902 `(#:jar-name "jettison.jar"
1903 #:source-dir "src/main/java"
1904 #:test-exclude (list "**/Abstract*.java"
1905 ;; Abstract classes
1906 "**/DOMTest.java"
1907 "**/BadgerFishDOMTest.java"
1908 "**/MappedDOMTest.java")))
1909 (native-inputs
1910 `(("java-junit" ,java-junit)))
1911 (home-page "https://github.com/codehaus/jettison")
1912 (synopsis "StAX implementation for JSON")
1913 (description "Jettison is a Java library for converting XML to JSON and
1914vice-versa with the help of the @dfn{Streaming API for XML} (StAX). It
1915implements @code{XMLStreamWriter} and @code{XMLStreamReader} and supports
1916@code{Mapped} and @code{BadgerFish} conventions.")
1917 (license license:asl2.0)))
a5ec8a5c
JL
1918
1919(define-public java-jdom2
1920 (package
1921 (name "java-jdom")
1922 (version "2.0.6")
1923 (source (origin
951bdf5a
TGR
1924 (method git-fetch)
1925 (uri (git-reference
1926 (url "https://github.com/hunterhacker/jdom.git")
1927 (commit (string-append "JDOM-" version))))
1928 (file-name (git-file-name name version))
a5ec8a5c
JL
1929 (sha256
1930 (base32
951bdf5a 1931 "14vv1kxrsdvwi4cz3rx6r48w5y6fvk9cymil8qhvxwp56xxrgxiq"))))
a5ec8a5c
JL
1932 (build-system ant-build-system)
1933 (arguments
1934 `(#:build-target "package"
951bdf5a 1935 #:tests? #f ; tests are run as part of the build process
a5ec8a5c
JL
1936 #:phases
1937 (modify-phases %standard-phases
1938 (replace 'install
1939 (install-jars "build")))))
1940 (home-page "http://jdom.org/")
1941 (synopsis "Access, manipulate, and output XML data")
1942 (description "Jdom is a Java-based solution for accessing, manipulating, and
1943outputting XML data from Java code.")
1944 (license license:bsd-4)))
5ee7b02f
JL
1945
1946(define-public java-xstream
1947 (package
1948 (name "java-xstream")
1949 (version "1.4.10")
b05bc3c4
TGR
1950 (source
1951 (origin
1952 (method git-fetch)
1953 (uri (git-reference
1954 (url "https://github.com/x-stream/xstream.git")
1955 (commit (string-append
1956 "XSTREAM_"
1957 (string-map (lambda (x) (if (eq? x #\.) #\_ x))
1958 version)))))
1959 (file-name (git-file-name name version))
1960 (sha256
1961 (base32 "12m2bw8bapdc1w0pni9wl5hh2y8jfdgcvxd464jl9917dsp3ai2n"))))
5ee7b02f
JL
1962 (build-system ant-build-system)
1963 (arguments
1964 `(#:jar-name "xstream.jar"
b05bc3c4 1965 ;; FIXME: Tests are not in a java subdirectory as assumed by ant-build-system.
5ee7b02f
JL
1966 #:tests? #f
1967 #:jdk ,icedtea-8
1968 #:source-dir "xstream/src/java"))
1969 (inputs
1970 `(("java-jdom" ,java-jdom)
1971 ("java-jdom2" ,java-jdom2)
1972 ("java-cglib" ,java-cglib)
1973 ("java-joda-time" ,java-joda-time)
1974 ("java-jettison" ,java-jettison)
1975 ("java-xom" ,java-xom)
1976 ("java-xpp3" ,java-xpp3)
1977 ("java-dom4j" ,java-dom4j)
1978 ("java-stax2-api" ,java-stax2-api)
1979 ("java-woodstox-core" ,java-woodstox-core)
1980 ("java-kxml2" ,java-kxml2)
1981 ("java-stax" ,java-stax)))
1982 (home-page "https://x-stream.github.io")
1983 (synopsis "XML serialization library")
1984 (description "XStream is a simple library to serialize Java objects to XML
1985and back again.")
1986 (license license:bsd-3)))
5c1cf7f3 1987
2cce23bf
PN
1988(define-public xmlrpc-c
1989 (package
1990 (name "xmlrpc-c")
1991 (version "1.43.08")
1992 (source (origin
1993 (method url-fetch)
1994 (uri (string-append "mirror://sourceforge/xmlrpc-c/Xmlrpc-c%20Super%20Stable/"
1995 version "/xmlrpc-c-" version ".tgz"))
1996 (sha256
1997 (base32
1998 "18zwbj6i2hpcn5riiyp8i6rml0sfv60dd7phw1x8g4r4lj2bbxf9"))))
1999 (build-system gnu-build-system)
2000 (inputs
2001 `(("curl" ,curl)))
2002 (native-inputs
2003 `(;; For tools, if ever needed.
2004 ("perl" ,perl)))
2005 (arguments
2006 `(#:make-flags ; Add $libdir to the RUNPATH of all the executables.
2007 (list (string-append "LDFLAGS_PERSONAL=-Wl,-rpath=" %output "/lib"))
2008 #:phases
2009 (modify-phases %standard-phases
2010 (add-after 'unpack 'fix-/bin/sh-in-tests
2011 (lambda _
2012 (substitute* "GNUmakefile"
2013 (("#! /bin/sh") (which "sh")))
2014 #t)))))
2015 (home-page "http://xmlrpc-c.sourceforge.net/")
2016 (synopsis "Lightweight RPC library based on XML and HTTP")
2017 (description
2018 "XML-RPC is a quick-and-easy way to make procedure calls over the Internet.
2019It converts the procedure call into an XML document, sends it to a remote
2020server using HTTP, and gets back the response as XML. This library provides a
2021modular implementation of XML-RPC for C and C++.")
2022 (license (list license:psfl license:expat))))
79a0eabd
OP
2023
2024(define-public python-xmltodict
2025 (package
2026 (name "python-xmltodict")
2027 (version "0.11.0")
2028 (source
2029 (origin
2030 (method url-fetch)
2031 (uri (pypi-uri "xmltodict" version))
2032 (sha256
2033 (base32
2034 "1pxh4yjhvmxi1h6f92skv41g4kbsws3ams57150kzn18m907v3cg"))))
2035 (build-system python-build-system)
2036 (native-inputs
2037 `(("python-coverage" ,python-coverage)
2038 ("python-nose" ,python-nose)))
2039 (home-page "https://github.com/martinblech/xmltodict")
2040 (synopsis "Work with XML like you are working with JSON")
2041 (description "This package provides a Python library to convert XML to
2042@code{OrderedDict}.")
2043 (license license:expat)))