From mboxrd@z Thu Jan 1 00:00:00 1970 From: ng0 Subject: [PATCH 17/18] gnu: Add python2-kombu-1. Date: Sun, 2 Oct 2016 11:00:54 +0000 Message-ID: <20161002110054.2297-18-ngillmann@runbox.com> References: <87bmz9cu89.fsf@we.make.ritual.n0.is> <20161002110054.2297-1-ngillmann@runbox.com> Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:55214) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bqeWb-0006DC-Nj for guix-devel@gnu.org; Sun, 02 Oct 2016 07:01:45 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bqeWZ-0002nj-MH for guix-devel@gnu.org; Sun, 02 Oct 2016 07:01:40 -0400 Received: from aibo.runbox.com ([91.220.196.211]:32787) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bqeWZ-0002nZ-FV for guix-devel@gnu.org; Sun, 02 Oct 2016 07:01:39 -0400 Received: from [10.9.9.212] (helo=mailfront12.runbox.com) by bars.runbox.com with esmtp (Exim 4.71) (envelope-from ) id 1bqeWY-0002Ls-Ps for guix-devel@gnu.org; Sun, 02 Oct 2016 13:01:38 +0200 In-Reply-To: <20161002110054.2297-1-ngillmann@runbox.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 * gnu/packages/python.scm (python2-kombu-1): New variable. --- gnu/packages/python.scm | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index ef14ca4..de674f3 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -8528,6 +8528,41 @@ RabbitMQ messaging server is the most popular implementation.") ("python2-unittest2" ,python2-unittest2) ,@(package-inputs kombu)))))) +;; required for pyparsing-1.5.0 which is required by celery-2.2.5 which is required by kallithea +(define-public python2-kombu-1 + (package + (name "python2-kombu-1") + (version "1.5.1") + (source + (origin + (method url-fetch) + (uri (pypi-uri "kombu" version)) + (sha256 + (base32 + "0vvfmjq4r55zslrfpamkg557qb6n291krzk39xzw12fxwbd6llmf")))) + (build-system python-build-system) + (arguments + `(#:python ,python-2)) + (inputs + `(("python2-amqplib" ,python2-amqplib) + ("python2-setuptools" ,python2-setuptools) + ("python2-unittest2" ,python2-unittest2))) + (propagated-inputs + `(("python2-anyjson" ,python2-anyjson) + ("python2-amqp" ,python2-amqp))) + (native-inputs + `(("python2-mock" ,python2-mock) + ("python2-nose" ,python2-nose))) + (home-page "http://kombu.readthedocs.org") + (synopsis "Message passing library for Python") + (description "The aim of Kombu is to make messaging in Python as easy as +possible by providing an idiomatic high-level interface for the AMQ protocol, +and also provide proven and tested solutions to common messaging problems. +AMQP is the Advanced Message Queuing Protocol, an open standard protocol for +message orientation, queuing, routing, reliability and security, for which the +RabbitMQ messaging server is the most popular implementation.") + (license license:bsd-3))) + (define-public python-billiard (package (name "python-billiard") -- 2.10.0