From mboxrd@z Thu Jan 1 00:00:00 1970 From: =?UTF-8?q?=E5=AE=8B=E6=96=87=E6=AD=A6?= Subject: [PATCH 3/4] gnu: Add python-kazoo and python2-kazoo. Date: Tue, 7 Jun 2016 21:57:32 +0800 Message-ID: <1465307853-12065-2-git-send-email-iyzsong@gmail.com> References: <1465307853-12065-1-git-send-email-iyzsong@gmail.com> Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:42020) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bAHVw-0005sl-B4 for guix-devel@gnu.org; Tue, 07 Jun 2016 09:57:53 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bAHVv-0000TH-5A for guix-devel@gnu.org; Tue, 07 Jun 2016 09:57:52 -0400 Received: from mail.openmailbox.org ([62.4.1.34]:55218) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bAHVu-0000TD-Uz for guix-devel@gnu.org; Tue, 07 Jun 2016 09:57:51 -0400 In-Reply-To: <1465307853-12065-1-git-send-email-iyzsong@gmail.com> 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 Cc: =?UTF-8?q?=E5=AE=8B=E6=96=87=E6=AD=A6?= * gnu/packages/python.scm (python-kazoo, python2-kazoo): New variables. --- gnu/packages/python.scm | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index 1a83933..ca97b4e 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -9041,3 +9041,29 @@ data in Python.") (define-public python2-tabulate (package-with-python2 python-tabulate)) + +(define-public python-kazoo + (package + (name "python-kazoo") + (version "2.2.1") + (source + (origin + (method url-fetch) + (uri (pypi-uri "kazoo" version)) + (sha256 + (base32 + "10pb864if9qi2pq9lfb9m8f7z7ss6rml80gf1d9h64lap5crjnjj")))) + (build-system python-build-system) + (arguments '(#:tests? #f)) ; XXX: needs zookeeper + (native-inputs + `(("python-setuptools" ,python-setuptools) + ("python-six" ,python-six))) + (home-page "https://kazoo.readthedocs.org") + (synopsis "Higher Level Zookeeper Client") + (description + "Kazoo is a Python library designed to make working with Zookeeper a more +hassle-free experience that is less prone to errors.") + (license asl2.0))) + +(define-public python2-kazoo + (package-with-python2 python-kazoo)) -- 2.6.3