mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: Add python-pykwalify.
* gnu/packages/python-xyz.scm (python-pykwalify): New variable.
This commit is contained in:
parent
88f06fd015
commit
34bf686952
1 changed files with 25 additions and 0 deletions
|
@ -16686,3 +16686,28 @@ (define-public python-intelhex
|
|||
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)))
|
||||
|
|
Loading…
Reference in a new issue