mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: Add python-lazr-uri.
* gnu/packages/python-web.scm (python-lazr-uri): New variable.
This commit is contained in:
parent
6a778b4705
commit
9377be6a48
1 changed files with 18 additions and 0 deletions
|
@ -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")
|
||||
|
|
Loading…
Reference in a new issue