guix-patches
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[bug#42297] [PATCH 03/10] gnu: Add python-minio.


From: Alexandru-Sergiu Marton
Subject: [bug#42297] [PATCH 03/10] gnu: Add python-minio.
Date: Thu, 9 Jul 2020 22:19:11 +0300

* gnu/packages/python-xyz.scm (python-minio): New variable.
---
 gnu/packages/python-xyz.scm | 33 +++++++++++++++++++++++++++++++++
 1 file changed, 33 insertions(+)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 98db6d9e51..5ce34cd738 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -20472,3 +20472,36 @@ For the most part it's transliterated from C, the 
major differences are:
 @end itemize
 ")
     (license license:gpl3+)))
+
+(define-public python-minio
+  (package
+    (name "python-minio")
+    (version "5.0.10")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (pypi-uri "minio" version))
+       (sha256
+        (base32
+         "05xl6ifzyvy8nnigv6267my8v9crlp7yl4nix4rng02zlcvpdjvf"))))
+    (build-system python-build-system)
+    (arguments
+     `(#:tests? #f)) ;; FIXME 4 tests fail
+    (propagated-inputs
+     `(("python-certifi" ,python-certifi)
+       ("python-configparser" ,python-configparser)
+       ("python-dateutil" ,python-dateutil)
+       ("python-future" ,python-future)
+       ("python-pytz" ,python-pytz)
+       ("python-urllib3" ,python-urllib3)))
+    (native-inputs
+     `(("python-nose" ,python-nose)
+       ("python-mock" ,python-mock)
+       ("python-faker" ,python-faker)))
+    (home-page "https://github.com/minio/minio-py";)
+    (synopsis
+     "MinIO Python Library for Amazon S3 Compatible Cloud Storage for Python")
+    (description
+     "The MinIO Python Client SDK provides simple APIs to access any Amazon S3
+compatible object storage server.")
+    (license license:asl2.0)))
-- 
2.27.0






reply via email to

[Prev in Thread] Current Thread [Next in Thread]