Merge pull request #148398 from fabaff/bump-minio

python3Packages.minio: 7.1.1 -> 7.1.2
This commit is contained in:
Fabian Affolter
2021-12-29 22:54:05 +01:00
committed by GitHub
@@ -16,14 +16,16 @@
buildPythonPackage rec {
pname = "minio";
version = "7.1.1";
version = "7.1.2";
format = "setuptools";
disabled = pythonOlder "3.6";
src = fetchFromGitHub {
owner = "minio";
repo = "minio-py";
rev = version;
sha256 = "sha256-dUNx6r7KppfeHefa1IeJPXSEMyElPk+RAGdn447ax1g=";
sha256 = "sha256-KluSdmhpSSqUTLVdFpIGwre7LOu3A16rt73FvaTmuz8=";
};
propagatedBuildInputs = [
@@ -42,12 +44,14 @@ buildPythonPackage rec {
pytestCheckHook
];
# example credentials aren't present
disabledTestPaths = [
# example credentials aren't present
"tests/unit/credentials_test.py"
];
pythonImportsCheck = [ "minio" ];
pythonImportsCheck = [
"minio"
];
meta = with lib; {
description = "Simple APIs to access any Amazon S3 compatible object storage server";