gnu: Add python-aiodns.

* gnu/packages/python-web.scm (python-aiodns): New variable.
master
Nicolas Goaziou 2018-04-27 00:23:07 +02:00
parent 25c591bf2e
commit f90f4c9c92
No known key found for this signature in database
GPG Key ID: A834B9E080A93738
1 changed files with 23 additions and 0 deletions

View File

@ -61,6 +61,29 @@
#:use-module ((guix licenses) #:prefix license:)
#:use-module (srfi srfi-1))
(define-public python-aiodns
(package
(name "python-aiodns")
(version "1.1.1")
(source
(origin
(method url-fetch)
(uri (pypi-uri "aiodns" version))
(sha256
(base32
"1snr5paql8dgvc676n8xq460wypjsb1xj53cf3px1s4wczf7lryq"))))
(build-system python-build-system)
(inputs
`(("python-pycares" ,python-pycares)))
(arguments
`(#:tests? #f)) ;tests require internet access
(home-page "http://github.com/saghul/aiodns")
(synopsis "Simple DNS resolver for asyncio")
(description "@code{aiodns} provides a simple way for doing
asynchronous DNS resolutions with a synchronous looking interface by
using @url{https://github.com/saghul/pycares,pycares}.")
(license license:expat)))
(define-public python-furl
(package
(name "python-furl")