Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.03 24 lines 680 B view raw
1{ lib, buildPythonPackage, isPy3k, fetchPypi 2, urllib3, future, python-dateutil , pytz, faker, mock, nose }: 3 4buildPythonPackage rec { 5 pname = "minio"; 6 version = "5.0.6"; 7 8 src = fetchPypi { 9 inherit pname version; 10 sha256 = "1p6gnbapwzpg7h0wv52fn4dd3dlhxl5qziadkiqjl8xaz8yp3vys"; 11 }; 12 13 disabled = !isPy3k; 14 15 checkInputs = [ faker mock nose ]; 16 propagatedBuildInputs = [ urllib3 python-dateutil pytz future ]; 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}