gnu: Add python-jsonpointer.

* gnu/packages/python.scm (python-jsonpointer, python2-jsonpointer):
New variables.
This commit is contained in:
Danny Milosavljevic 2017-06-04 15:41:02 +02:00
parent 7e488f9991
commit 1e92287d41
No known key found for this signature in database
GPG key ID: E71A35542C30BAA5

View file

@ -15079,3 +15079,24 @@ (define-public python-nose-randomly
(define-public python2-nose-randomly
(package-with-python2 python-nose-randomly))
(define-public python-jsonpointer
(package
(name "python-jsonpointer")
(version "1.10")
(source
(origin
(method url-fetch)
(uri (pypi-uri "jsonpointer" version))
(sha256
(base32
"1cg0gvgqjysydv6p45v4jywg1jb3v48c7m3cbpi57zgf6nndr9cz"))))
(build-system python-build-system)
(home-page "https://github.com/stefankoegl/python-json-pointer")
(synopsis "Identify specific nodes in a JSON document")
(description "@code{jsonpointer} allows you to access specific nodes
by path in a JSON document (see RFC 6901).")
(license license:bsd-3)))
(define-public python2-jsonpointer
(package-with-python2 python-jsonpointer))