2019-06-16 20:59:06 +01:00
|
|
|
{ lib, buildPythonPackage, isPy3k, fetchPypi
|
2019-01-31 02:38:48 +00:00
|
|
|
, urllib3, python-dateutil , pytz, faker, mock, nose }:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "minio";
|
2019-05-30 07:49:51 +01:00
|
|
|
version = "4.0.17";
|
2019-01-31 02:38:48 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2019-05-30 07:49:51 +01:00
|
|
|
sha256 = "0fb1faab701008a1ff05b9b2497b6ba52d1aff963323356ed86f2771b186db6b";
|
2019-01-31 02:38:48 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
disabled = !isPy3k;
|
|
|
|
|
|
|
|
checkInputs = [ faker mock nose ];
|
|
|
|
propagatedBuildInputs = [ urllib3 python-dateutil pytz ];
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Simple APIs to access any Amazon S3 compatible object storage server";
|
|
|
|
homepage = https://github.com/minio/minio-py;
|
|
|
|
maintainers = with maintainers; [ peterromfeldhk ];
|
|
|
|
license = licenses.asl20;
|
|
|
|
};
|
|
|
|
}
|