From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:52865) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gWc8J-0005xF-IF for guix-patches@gnu.org; Tue, 11 Dec 2018 02:07:08 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gWc8H-00024x-EP for guix-patches@gnu.org; Tue, 11 Dec 2018 02:07:07 -0500 Received: from debbugs.gnu.org ([208.118.235.43]:38447) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1gWc8H-00024r-Ak for guix-patches@gnu.org; Tue, 11 Dec 2018 02:07:05 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1gWc8H-00077d-5A for guix-patches@gnu.org; Tue, 11 Dec 2018 02:07:05 -0500 Subject: [bug#33702] [PATCH 4/7] gnu: Add python-vine. Resent-Message-ID: From: Christopher Baines Date: Tue, 11 Dec 2018 08:06:04 +0100 Message-Id: <20181211070607.20548-4-mail@cbaines.net> In-Reply-To: <20181211070607.20548-1-mail@cbaines.net> References: <20181211070607.20548-1-mail@cbaines.net> List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 33702@debbugs.gnu.org This is needed to update python-amqp to 2.3.2. * gnu/packages/python.scm (python-vine): New variable. --- gnu/packages/python.scm | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index a61be664de..25931974ae 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -2317,6 +2317,30 @@ object.") (define-public python2-pyyaml (package-with-python2 python-pyyaml)) +(define-public python-vine + (package + (name "python-vine") + (version "1.1.4") + (source + (origin + (method url-fetch) + (uri (pypi-uri "vine" version)) + (sha256 + (base32 + "0wkskb2hb494v9gixqnf4bl972p4ibcmxdykzpwjlfa5picns4aj")))) + (build-system python-build-system) + (native-inputs + `(("python-pytest" ,python-pytest) + ("python-case" ,python-case))) + (home-page "https://github.com/celery/vine") + (synopsis "Promises for Python") + (description + "@code{vine} provides a special implementation of promises in that it can +be used both for \"promise of a value\" and lazy evaluation. The biggest +upside for this is that everything in a promise can also be a promise, +e.g. filters, callbacks and errbacks can all be promises.") + (license license:bsd-3))) + (define-public python-virtualenv (package (name "python-virtualenv") -- 2.18.0