me
/
guix
Archived
1
0
Fork 0

gnu: Add python-pykwalify.

* gnu/packages/python-xyz.scm (python-pykwalify): New variable.
master
Clément Lassieur 2019-12-05 16:50:17 +01:00
parent 88f06fd015
commit 34bf686952
No known key found for this signature in database
GPG Key ID: 89F96D4808F359C7
1 changed files with 25 additions and 0 deletions

View File

@ -16686,3 +16686,28 @@ scratch and manipulate data from Intel HEX file format. It also includes
several convenience Python scripts, including \"classic\" hex2bin and bin2hex
converters and more, those based on the library itself.")
(license license:bsd-3)))
(define-public python-pykwalify
(package
(name "python-pykwalify")
(version "1.7.0")
(source
(origin
(method url-fetch)
(uri (pypi-uri "pykwalify" version))
(sha256
(base32
"1cnfzkg1b01f825ikpw2fhjclf9c8akxjfrbd1vc22x1lg2kk2vy"))))
(build-system python-build-system)
(arguments '(#:tests? #f)) ;missing dependencies
(propagated-inputs
`(("python-dateutil" ,python-dateutil)
("python-docopt" ,python-docopt)
("python-pyyaml" ,python-pyyaml)))
(home-page "https://github.com/grokzen/pykwalify")
(synopsis
"Python lib/cli for JSON/YAML schema validation")
(description
"This package provides a parser, schema validator, and data binding tool
for YAML and JSON.")
(license license:expat)))