{ lib , buildPythonPackage , fetchPypi , google-api-core , grpc-google-iam-v1 , mock , proto-plus , pytest-asyncio , pytestCheckHook }: buildPythonPackage rec { pname = "google-cloud-appengine-logging"; version = "1.1.0"; src = fetchPypi { inherit pname version; sha256 = "91fe9b0833f6e1a46293dcc0e483716372c9ff4a95ebe51276c5f0092cb9defd"; }; propagatedBuildInputs = [ google-api-core grpc-google-iam-v1 proto-plus ]; checkInputs = [ mock pytestCheckHook pytest-asyncio ]; pythonImportsCheck = [ "google.cloud.appengine_logging" "google.cloud.appengine_logging_v1" ]; meta = with lib; { description = "Appengine logging client library"; homepage = "https://github.com/googleapis/python-appengine-logging"; license = licenses.asl20; maintainers = with maintainers; [ fab ]; }; }