{ lib , buildPythonPackage , fetchPypi , pytestCheckHook , google-cloud-logging , google-cloud-testutils , libcst , mock , proto-plus , pytest-asyncio , pythonOlder }: buildPythonPackage rec { pname = "google-cloud-error-reporting"; version = "1.6.3"; format = "setuptools"; disabled = pythonOlder "3.7"; src = fetchPypi { inherit pname version; hash = "sha256-7QR4NS98MtJ8aMLC+qQeTrK1Rv5kw6XlZhSKbatrZFY="; }; propagatedBuildInputs = [ google-cloud-logging libcst proto-plus ]; checkInputs = [ google-cloud-testutils mock pytestCheckHook pytest-asyncio ]; disabledTests = [ # require credentials "test_report_error_event" "test_report_exception" ]; preCheck = '' # prevent google directory from shadowing google imports rm -r google ''; meta = with lib; { description = "Stackdriver Error Reporting API client library"; homepage = "https://github.com/googleapis/python-error-reporting"; license = licenses.asl20; maintainers = with maintainers; [ SuperSandro2000 ]; }; }