From mboxrd@z Thu Jan 1 00:00:00 1970 From: ng0 Subject: [PATCH 10/11] gnu: Add python-trollius-redis. Date: Wed, 14 Dec 2016 12:25:25 +0000 Message-ID: <20161214122526.4458-11-ng0@libertad.pw> References: <20161212151837.GA24973@jasmine> <20161214122526.4458-1-ng0@libertad.pw> Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:50110) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cH8eB-0007h9-4d for guix-devel@gnu.org; Wed, 14 Dec 2016 07:27:00 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cH8e6-0005pH-1x for guix-devel@gnu.org; Wed, 14 Dec 2016 07:26:59 -0500 Received: from aibo.runbox.com ([91.220.196.211]:60833) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1cH8e5-0005oe-Or for guix-devel@gnu.org; Wed, 14 Dec 2016 07:26:53 -0500 Received: from [10.9.9.210] (helo=mailfront10.runbox.com) by bars.runbox.com with esmtp (Exim 4.71) (envelope-from ) id 1cH8e4-0001fc-1I for guix-devel@gnu.org; Wed, 14 Dec 2016 13:26:52 +0100 In-Reply-To: <20161214122526.4458-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 b1bfc4850..1ff4bc8f6 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -8048,6 +8048,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