mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 23:46:13 -05:00
gnu: Add python-trollius-redis.
* gnu/packages/python.scm (python-trollius-redis, python2-trollius-redis): New variables. Signed-off-by: Leo Famulari <leo@famulari.name>
This commit is contained in:
parent
789de5e279
commit
d5bbf806f3
1 changed files with 22 additions and 0 deletions
|
@ -8105,6 +8105,28 @@ (define-public python-execnet
|
|||
(define-public python2-execnet
|
||||
(package-with-python2 python-execnet))
|
||||
|
||||
(define-public python-trollius-redis
|
||||
(package
|
||||
(name "python-trollius-redis")
|
||||
(version "0.1.4")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (pypi-uri "trollius_redis" version))
|
||||
(sha256
|
||||
(base32
|
||||
"0k3vypszmgmaipgw9xscvgm79h2zd6p6ci8gdp5sxl6g5kbqr9fy"))))
|
||||
(build-system python-build-system)
|
||||
(home-page "https://github.com/benjolitz/trollius-redis")
|
||||
(synopsis "Port of asyncio-redis to trollius")
|
||||
(description "@code{trollius-redis} is a Redis client for Python
|
||||
trollius. It is an asynchronious IO (PEP 3156) implementation of the
|
||||
Redis protocol.")
|
||||
(license license:bsd-2)))
|
||||
|
||||
(define-public python2-trollius-redis
|
||||
(package-with-python2 python-trollius-redis))
|
||||
|
||||
;;; The software provided by this package was integrated into pytest 2.8.
|
||||
(define-public python-pytest-cache
|
||||
(package
|
||||
|
|
Loading…
Reference in a new issue