1{ lib 2, buildPythonPackage 3, fetchPypi 4, google-api-core 5, grpc-google-iam-v1 6, mock 7, proto-plus 8, pytest-asyncio 9, pytestCheckHook 10, pythonOlder 11}: 12 13buildPythonPackage rec { 14 pname = "google-cloud-iam-logging"; 15 version = "1.0.6"; 16 format = "setuptools"; 17 18 disabled = pythonOlder "3.6"; 19 20 src = fetchPypi { 21 inherit pname version; 22 hash = "sha256-XiuEki6bNKZ8CzfcBBjnDbAh2yEADZohpP991OTf2DI="; 23 }; 24 25 propagatedBuildInputs = [ 26 google-api-core 27 grpc-google-iam-v1 28 proto-plus 29 ]; 30 31 checkInputs = [ 32 mock 33 pytestCheckHook 34 pytest-asyncio 35 ]; 36 37 pythonImportsCheck = [ 38 "google.cloud.iam_logging" 39 "google.cloud.iam_logging_v1" 40 ]; 41 42 meta = with lib; { 43 description = "IAM Service Logging client library"; 44 homepage = "https://github.com/googleapis/python-iam-logging"; 45 license = licenses.asl20; 46 maintainers = with maintainers; [ fab ]; 47 }; 48}