me
/
guix
Archived
1
0
Fork 0

gnu: Add python-jsonschema.

* gnu/packages/python.scm (python-jsonschema, python2-jsonschema): New
  variables.
master
David Thompson 2014-09-03 08:06:29 -04:00
parent e6cfbd364a
commit 864b5211cd
1 changed files with 25 additions and 0 deletions

View File

@ -1074,3 +1074,28 @@ is used by the Requests library to verify HTTPS requests.")
"Requests is a Python HTTP client library. It aims to be easier to use "Requests is a Python HTTP client library. It aims to be easier to use
than Pythons urllib2 library.") than Pythons urllib2 library.")
(license asl2.0))) (license asl2.0)))
(define-public python-jsonschema
(package
(name "python-jsonschema")
(version "2.4.0")
(source (origin
(method url-fetch)
(uri
(string-append
"https://pypi.python.org/packages/source/j/jsonschema/jsonschema-"
version ".tar.gz"))
(sha256
(base32
"1yik3031ziygvq66rj3mzfqdgxj29sg1bkfc46wsgi7lnbqs560j"))))
(build-system python-build-system)
(inputs
`(("python-setuptools" ,python-setuptools)))
(home-page "http://github.com/Julian/jsonschema")
(synopsis "Implementation of JSON Schema for Python")
(description
"Jsonschema is an implementation of JSON Schema for Python.")
(license expat)))
(define-public python2-jsonschema
(package-with-python2 python-jsonschema))