{ stdenv , buildPythonPackage , fetchPypi , google_api_core , pytest , mock }: buildPythonPackage rec { pname = "google-cloud-bigquery-datatransfer"; version = "1.0.0"; src = fetchPypi { inherit pname version; sha256 = "6eae79e6950f70d48b0578ae95f93530b4eac28216b96e2279cb2f94c5f2ba33"; }; checkInputs = [ pytest mock ]; propagatedBuildInputs = [ google_api_core ]; checkPhase = '' pytest tests/unit ''; meta = with stdenv.lib; { description = "BigQuery Data Transfer API client library"; homepage = "https://github.com/GoogleCloudPlatform/google-cloud-python"; license = licenses.asl20; maintainers = [ maintainers.costrouc ]; }; }