From mboxrd@z Thu Jan 1 00:00:00 1970 From: ng0 Subject: [PATCH 10/11] gnu: Add python-trollius-redis. Date: Wed, 21 Dec 2016 11:47:18 +0000 Message-ID: <20161221114718.12679-11-ng0@libertad.pw> References: <20161221001039.3a6f6037@scratchpost.org> <20161221114718.12679-1-ng0@libertad.pw> Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:35532) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cJfN4-0006CJ-1T for guix-devel@gnu.org; Wed, 21 Dec 2016 06:47:47 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cJfN3-0002kl-Be for guix-devel@gnu.org; Wed, 21 Dec 2016 06:47:46 -0500 Received: from aibo.runbox.com ([91.220.196.211]:50067) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1cJfN3-0002kF-4Z for guix-devel@gnu.org; Wed, 21 Dec 2016 06:47:45 -0500 Received: from [10.9.9.212] (helo=mailfront12.runbox.com) by bars.runbox.com with esmtp (Exim 4.71) (envelope-from ) id 1cJfN2-0007LV-3b for guix-devel@gnu.org; Wed, 21 Dec 2016 12:47:44 +0100 In-Reply-To: <20161221114718.12679-1-ng0@libertad.pw> List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: "Guix-devel" To: guix-devel@gnu.org * gnu/packages/python.scm (python-trollius-redis): New variable. --- gnu/packages/python.scm | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index 27405d0b5..949725756 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -8017,6 +8017,29 @@ minimal and fast API targetting the following uses: (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 a 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 -- 2.11.0