From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:56782) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1i3hrq-0002RM-38 for guix-patches@gnu.org; Fri, 30 Aug 2019 10:27:11 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1i3hrm-0002Jn-Nc for guix-patches@gnu.org; Fri, 30 Aug 2019 10:27:08 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:45845) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1i3hrm-0002HE-DW for guix-patches@gnu.org; Fri, 30 Aug 2019 10:27:06 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1i3hrl-0003qE-7s for guix-patches@gnu.org; Fri, 30 Aug 2019 10:27:05 -0400 Subject: [bug#37234] [PATCH 05/21] gnu: Add python-minio. Resent-Message-ID: From: Marius Bakke Date: Fri, 30 Aug 2019 16:25:23 +0200 Message-Id: <20190830142539.28376-5-mbakke@fastmail.com> In-Reply-To: <20190830142539.28376-1-mbakke@fastmail.com> References: <20190830142539.28376-1-mbakke@fastmail.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 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: 37234@debbugs.gnu.org * gnu/packages/python-web.scm (python-minio): New public variable. --- gnu/packages/python-web.scm | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm index 9966f66d8f..7454fe8793 100644 --- a/gnu/packages/python-web.scm +++ b/gnu/packages/python-web.scm @@ -523,6 +523,34 @@ C, yielding parse times that can be a thirtieth of the html5lib parse times.") (define-public python2-html5-parser (package-with-python2 python-html5-parser)) +(define-public python-minio + (package + (name "python-minio") + (version "4.0.20") + (source (origin + (method url-fetch) + (uri (pypi-uri "minio" version)) + (sha256 + (base32 + "03z96iri7xl74p76blz72x09bjwh4qx2y6jxzv10vjssp4mx6499")))) + (build-system python-build-system) + (native-inputs + `(("python-faker" ,python-faker) + ("python-mock" ,python-mock) + ("python-nose" ,python-nose))) + (propagated-inputs + `(("python-certifi" ,python-certifi) + ("python-dateutil" ,python-dateutil) + ("python-future" ,python-future) + ("python-pytz" ,python-pytz) + ("python-urllib3" ,python-urllib3))) + (home-page "https://github.com/minio/minio-py") + (synopsis "Programmatically access Amazon S3 from Python") + (description + "This package provides a Python library that allows you to interact with +any Amazon S3 compatible object storage server.") + (license license:asl2.0))) + (define-public python-pycurl (package (name "python-pycurl") -- 2.22.1