gnu: Add python-pyxb.
* gnu/packages/xml.scm (python-pyxb, python2-pyxb): New variables.master
parent
fd49eb213f
commit
c2efe1aea8
|
@ -13,6 +13,7 @@
|
||||||
;;; Copyright © 2016 Jan Nieuwenhuizen <janneke@gnu.org>
|
;;; Copyright © 2016 Jan Nieuwenhuizen <janneke@gnu.org>
|
||||||
;;; Copyright © 2016 ng0 <ng0@we.make.ritual.n0.is>
|
;;; Copyright © 2016 ng0 <ng0@we.make.ritual.n0.is>
|
||||||
;;; Copyright © 2016 Tobias Geerinckx-Rice <me@tobias.gr>
|
;;; Copyright © 2016 Tobias Geerinckx-Rice <me@tobias.gr>
|
||||||
|
;;; Copyright © 2016 Marius Bakke <mbakke@fastmail.com>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -729,6 +730,30 @@ different Unicode encodings which happen automatically during
|
||||||
parsing/saving.")
|
parsing/saving.")
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
|
(define-public python-pyxb
|
||||||
|
(package
|
||||||
|
(name "python-pyxb")
|
||||||
|
(version "1.2.5")
|
||||||
|
(source (origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (pypi-uri "PyXB" version))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"0rzzwibfqa28gxgcxx4cybx1qcg0g6fand06ykj3gz7z5kp653sf"))))
|
||||||
|
(build-system python-build-system)
|
||||||
|
(home-page "http://pyxb.sourceforge.net/")
|
||||||
|
(synopsis "Python XML Schema Bindings")
|
||||||
|
(description
|
||||||
|
"PyXB (\"pixbee\") is a pure Python package that generates Python source
|
||||||
|
code for classes that correspond to data structures defined by XMLSchema.")
|
||||||
|
(license (list license:asl2.0 ; Most files.
|
||||||
|
license:expat ; pyxb/utils/six.py
|
||||||
|
license:gpl2 ; bundled jquery in doc is dual MIT/GPL2
|
||||||
|
license:psfl)))) ; pyxb/utils/activestate.py
|
||||||
|
|
||||||
|
(define-public python2-pyxb
|
||||||
|
(package-with-python2 python-pyxb))
|
||||||
|
|
||||||
(define-public xmlto
|
(define-public xmlto
|
||||||
(package
|
(package
|
||||||
(name "xmlto")
|
(name "xmlto")
|
||||||
|
|
Reference in New Issue