gnu: Add python-yarl.
* gnu/packages/python-web.scm (python-yarl): New variable.master
parent
f90f4c9c92
commit
2eccb41493
|
@ -2555,3 +2555,27 @@ more.")
|
|||
interface to @code{c-ares}, a C library that performs DNS requests and
|
||||
name resolutions asynchronously.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public python-yarl
|
||||
(package
|
||||
(name "python-yarl")
|
||||
(version "1.1.1")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (pypi-uri "yarl" version))
|
||||
(sha256
|
||||
(base32
|
||||
"1s6z13g8vgxfkkqwhn6imnm7pl7ky9arv4jygnn6bcndcbidg7d6"))))
|
||||
(build-system python-build-system)
|
||||
(native-inputs
|
||||
`(("python-pytest" ,python-pytest)
|
||||
("python-pytest-runner" ,python-pytest-runner)))
|
||||
(propagated-inputs
|
||||
`(("python-idna" ,python-idna)
|
||||
("python-multidict" ,python-multidict)))
|
||||
(home-page "https://github.com/aio-libs/yarl/")
|
||||
(synopsis "Yet another URL library")
|
||||
(description "@code{yarl} module provides handy @code{URL} class
|
||||
for URL parsing and changing.")
|
||||
(license license:asl2.0)))
|
||||
|
|
|
@ -13296,3 +13296,4 @@ generators and Python 3.7's context managers into Python 3.5.")
|
|||
(description "@code{async-timeout} provides a timeout timeout context
|
||||
manager compatible with @code{asyncio}.")
|
||||
(license license:asl2.0)))
|
||||
|
||||
|
|
Reference in New Issue