gnu: Add python-lazr-uri.

* gnu/packages/python-web.scm (python-lazr-uri): New variable.
This commit is contained in:
Maxim Cournoyer 2022-05-06 00:37:38 -04:00
parent 6a778b4705
commit 9377be6a48
No known key found for this signature in database
GPG key ID: 1260E46482E63562

View file

@ -109,6 +109,24 @@ (define-module (gnu packages python-web)
#:use-module ((guix licenses) #:prefix license:)
#:use-module (srfi srfi-1))
(define-public python-lazr-uri
(package
(name "python-lazr-uri")
(version "1.0.6")
(source
(origin
(method url-fetch)
(uri (pypi-uri "lazr.uri" version))
(sha256
(base32 "0r44rw0bj5mayhqwfwj1dnrjgzj1lrh7ishiddd1vygnrczqa9jh"))))
(build-system python-build-system)
(native-inputs (list python-zope-testrunner))
(home-page "https://launchpad.net/lazr.uri")
(synopsis "Python URI manipulation library")
(description "This Python package provides a self-contained, easily
reusable library for parsing, manipulating, and generating URIs.")
(license license:lgpl3)))
(define-public python-prawcore
(package
(name "python-prawcore")