Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 19.09 24 lines 678 B view raw
1{ lib, buildPythonPackage, isPy3k, fetchPypi 2, urllib3, python-dateutil , pytz, faker, mock, nose }: 3 4buildPythonPackage rec { 5 pname = "minio"; 6 version = "4.0.17"; 7 8 src = fetchPypi { 9 inherit pname version; 10 sha256 = "0fb1faab701008a1ff05b9b2497b6ba52d1aff963323356ed86f2771b186db6b"; 11 }; 12 13 disabled = !isPy3k; 14 15 checkInputs = [ faker mock nose ]; 16 propagatedBuildInputs = [ urllib3 python-dateutil pytz ]; 17 18 meta = with lib; { 19 description = "Simple APIs to access any Amazon S3 compatible object storage server"; 20 homepage = https://github.com/minio/minio-py; 21 maintainers = with maintainers; [ peterromfeldhk ]; 22 license = licenses.asl20; 23 }; 24}