gnu: Update python-jsonschema to 2.5.1.

* gnu/packages/python.scm (python-jsonschema): Update to 2.5.1.
[inputs]: Add python-vcversioner.
This commit is contained in:
David Thompson 2016-01-11 13:26:47 -05:00
parent ea521b42c2
commit b3667afbd2

View file

@ -2224,7 +2224,7 @@ (define-public python2-vcversioner
(define-public python-jsonschema
(package
(name "python-jsonschema")
(version "2.4.0")
(version "2.5.1")
(source (origin
(method url-fetch)
(uri
@ -2233,10 +2233,11 @@ (define-public python-jsonschema
version ".tar.gz"))
(sha256
(base32
"1yik3031ziygvq66rj3mzfqdgxj29sg1bkfc46wsgi7lnbqs560j"))))
"0hddbqjm4jq63y8jf44nswina1crjs16l9snb6m3vvgyg31klrrn"))))
(build-system python-build-system)
(inputs
`(("python-setuptools" ,python-setuptools)))
`(("python-setuptools" ,python-setuptools)
("python-vcversioner" ,python-vcversioner)))
(home-page "http://github.com/Julian/jsonschema")
(synopsis "Implementation of JSON Schema for Python")
(description