From mboxrd@z Thu Jan 1 00:00:00 1970 From: ng0 Subject: [PATCH 10/11] gnu: Add python-trollius-redis. Date: Sun, 11 Dec 2016 18:12:36 +0000 Message-ID: <20161211181237.24485-11-ng0@libertad.pw> References: <20161211181237.24485-1-ng0@libertad.pw> Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:58015) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cG8cm-0003eW-0R for guix-devel@gnu.org; Sun, 11 Dec 2016 13:13:25 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cG8cl-0006gJ-3H for guix-devel@gnu.org; Sun, 11 Dec 2016 13:13:23 -0500 Received: from aibo.runbox.com ([91.220.196.211]:54610) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1cG8ck-0006fY-TV for guix-devel@gnu.org; Sun, 11 Dec 2016 13:13:23 -0500 Received: from [10.9.9.211] (helo=mailfront11.runbox.com) by bars.runbox.com with esmtp (Exim 4.71) (envelope-from ) id 1cG8cj-0002OQ-Vx for guix-devel@gnu.org; Sun, 11 Dec 2016 19:13:22 +0100 In-Reply-To: <20161211181237.24485-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 45451af74..11800b359 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -8004,6 +8004,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