gnu: Add python-wadllib.

* gnu/packages/python-web.scm (python-wadllib): New variable.
This commit is contained in:
Maxim Cournoyer 2022-05-06 00:41:39 -04:00
parent 9377be6a48
commit 5e25aeee16
No known key found for this signature in database
GPG key ID: 1260E46482E63562

View file

@ -7394,3 +7394,21 @@ (define-public python-extruct
@item Dublin Core Metadata (DC-HTML-2003)
@end itemize")
(license license:bsd-3)))
(define-public python-wadllib
(package
(name "python-wadllib")
(version "1.3.6")
(source
(origin
(method url-fetch)
(uri (pypi-uri "wadllib" version))
(sha256
(base32 "1z65crvdsjxh9nahz1g6q021ijmv85ixmq88l96d61qh5imavndc"))))
(build-system python-build-system)
(propagated-inputs (list python-lazr-uri))
(home-page "https://launchpad.net/wadllib")
(synopsis "Web Application Description Language (WADL) navigation library")
(description "The @code{wadllib} Python library allows navigating HTTP
resources using Web Application Description Language (WADL) files as guides.")
(license license:lgpl3)))