From mboxrd@z Thu Jan 1 00:00:00 1970 From: Danny Milosavljevic Subject: [PATCH 5/8] gnu: Add python-geventhttpclient. Date: Tue, 17 Jan 2017 23:25:45 +0100 Message-ID: <20170117222548.13995-6-dannym@scratchpost.org> References: <20170117222548.13995-1-dannym@scratchpost.org> Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:39796) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cTcCk-00051t-83 for guix-devel@gnu.org; Tue, 17 Jan 2017 17:26:15 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cTcCj-0003P1-Af for guix-devel@gnu.org; Tue, 17 Jan 2017 17:26:14 -0500 Received: from dd1012.kasserver.com ([85.13.128.8]:33334) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1cTcCj-0003O8-3J for guix-devel@gnu.org; Tue, 17 Jan 2017 17:26:13 -0500 In-Reply-To: <20170117222548.13995-1-dannym@scratchpost.org> 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-geventhttpclient, python2-geventhttpclient): New variables. --- gnu/packages/python.scm | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index deb801631..8c81eae64 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -12656,6 +12656,29 @@ Features: @end enumerate") (license (license:x11-style "file://LICENSE")))) +(define-public python-geventhttpclient + (package + (name "python-geventhttpclient") + (version "1.3.1") + (source + (origin + (method url-fetch) + (uri (pypi-uri "geventhttpclient" version)) + (sha256 + (base32 "07d0q3wzmml75227r6y6mrl5a0zpf4v9gj0ni5rhbyzmaj4az1xx")))) + (build-system python-build-system) + (propagated-inputs + `(("python-gevent" ,python-gevent) + ("python-six" ,python-six) + ("python-certifi" ,python-certifi))) + (home-page "http://github.com/gwik/geventhttpclient") + (synopsis "HTTP client library for gevent") + (description "This package provides an HTTP client library for gevent in Python.") + (license license:expat))) + +(define-public python2-geventhttpclient + (package-with-python2 python-geventhttpclient)) + (define-public python-dulwich (package (name "python-dulwich")