gnu: Add python-txaio.

* gnu/packages/python-xyz.scm (python-txaio): New variable.
master
Leo Famulari 2019-02-17 13:23:00 -05:00
parent b742c00656
commit d5bbf66d71
No known key found for this signature in database
GPG Key ID: 2646FA30BACA7F08
1 changed files with 21 additions and 0 deletions

View File

@ -15060,3 +15060,24 @@ make your work easier.")
and dates in \"human readable\" forms. For example, it would display and dates in \"human readable\" forms. For example, it would display
\"12345591313\" as \"12.3 billion\".") \"12345591313\" as \"12.3 billion\".")
(license license:expat))) (license license:expat)))
(define-public python-txaio
(package
(name "python-txaio")
(version "18.8.1")
(source
(origin
(method url-fetch)
(uri (pypi-uri "txaio" version))
(sha256
(base32
"1zmpdph6zddgrnkkcykh6qk5s46l7s5mzfqrh82m4b5iffn61qv7"))))
(build-system python-build-system)
(propagated-inputs
`(("python-twisted" ,python-twisted)
("python-six" ,python-six)))
(home-page "https://github.com/crossbario/txaio")
(synopsis "Compatibility layer between Python asyncio and Twisted")
(description "Txaio provides a compatibility layer between the Python
@code{asyncio} module and @code{Twisted}.")
(license license:expat)))