[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
10/23: gnu: Add python-minio.
From: |
guix-commits |
Subject: |
10/23: gnu: Add python-minio. |
Date: |
Fri, 20 Nov 2020 19:23:11 -0500 (EST) |
mbakke pushed a commit to branch master
in repository guix.
commit 48d8176e006a6e7460b81c2386119181cf360ca5
Author: Marius Bakke <mbakke@fastmail.com>
AuthorDate: Thu Aug 15 19:04:15 2019 +0200
gnu: Add python-minio.
* gnu/packages/python-web.scm (python-minio): New public variable.
---
gnu/packages/python-web.scm | 35 +++++++++++++++++++++++++++++++++++
1 file changed, 35 insertions(+)
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm
index 917537b..66e45aa 100644
--- a/gnu/packages/python-web.scm
+++ b/gnu/packages/python-web.scm
@@ -798,6 +798,41 @@ 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 "6.0.0")
+ (source (origin
+ (method url-fetch)
+ (uri (pypi-uri "minio" version))
+ (sha256
+ (base32
+ "1cxpa0m7mdvpdbc1g6wlihq6ja4g4paxkl6f3q84bbnx07zpbllp"))))
+ (build-system python-build-system)
+ (arguments
+ '(#:phases (modify-phases %standard-phases
+ (add-before 'check 'disable-failing-tests
+ (lambda _
+ ;; This test requires network access.
+ (delete-file "tests/unit/credentials_test.py")
+ #t)))))
+ (native-inputs
+ `(("python-faker" ,python-faker)
+ ("python-mock" ,python-mock)
+ ("python-nose" ,python-nose)))
+ (propagated-inputs
+ `(("python-certifi" ,python-certifi)
+ ("python-configparser" ,python-configparser)
+ ("python-dateutil" ,python-dateutil)
+ ("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 for interacting with any
+Amazon S3 compatible object storage server.")
+ (license license:asl2.0)))
+
(define-public python-pycurl
(package
(name "python-pycurl")
- branch master updated (74c4492 -> beba9ff), guix-commits, 2020/11/20
- 03/23: gnu: python-botocore: Remove unused inputs., guix-commits, 2020/11/20
- 02/23: gnu: awscli, python-botocore: Add comment about compatibility., guix-commits, 2020/11/20
- 08/23: gnu: Add python-gorilla., guix-commits, 2020/11/20
- 10/23: gnu: Add python-minio.,
guix-commits <=
- 01/23: gnu: cheese: Remove obsolete input., guix-commits, 2020/11/20
- 04/23: gnu: python-botocore: Update to 1.19.22., guix-commits, 2020/11/20
- 05/23: gnu: awscli: Update to 1.18.183., guix-commits, 2020/11/20
- 06/23: gnu: python-s3transfer: Update to 0.3.3., guix-commits, 2020/11/20
- 07/23: gnu: Add python-databricks-cli., guix-commits, 2020/11/20
- 09/23: gnu: Add python-querystring-parser., guix-commits, 2020/11/20
- 11/23: gnu: python-docker: Propagate runtime dependency., guix-commits, 2020/11/20
- 14/23: gnu: Add python-jsonpickle., guix-commits, 2020/11/20
- 16/23: gnu: Add python-jose., guix-commits, 2020/11/20
- 19/23: gnu: python-jsonpatch: Propagate required input., guix-commits, 2020/11/20