gnu: Add python-uritemplate.

* gnu/packages/python.scm (python-uritemplate, python2-uritemplate): New
  variables.

Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
Oleg Pykhalov 2017-09-06 10:07:55 +03:00 committed by Ludovic Courtès
parent a5d6b0a3d2
commit 4967946b8a
No known key found for this signature in database
GPG key ID: 090B11993D9AEBB5

View file

@ -16227,3 +16227,24 @@ (define-public python-pyaes
(define-public python2-pyaes
(package-with-python2 python-pyaes))
(define-public python-uritemplate
(package
(name "python-uritemplate")
(version "3.0.0")
(source
(origin
(method url-fetch)
(uri (pypi-uri "uritemplate" version))
(sha256
(base32
"0781gm9g34wa0asc19dx81ng0nqq07igzv3bbvdqmz13pv7469n0"))))
(build-system python-build-system)
(home-page "https://uritemplate.readthedocs.org")
(synopsis "Library to deal with URI Templates")
(description "@code{uritemplate} provides Python library to deal with URI
Templates.")
(license license:bsd-2)))
(define-public python2-uritemplate
(package-with-python2 python-uritemplate))