{ stdenv , buildPythonPackage , fetchPypi , google_api_core , pytest , mock }: buildPythonPackage rec { pname = "google-cloud-dataproc"; version = "0.6.1"; src = fetchPypi { inherit pname version; sha256 = "302bc448e77f1de958ba7413fb85819eda911043f219d8fc030a356848bc6f31"; }; checkInputs = [ pytest mock ]; propagatedBuildInputs = [ google_api_core ]; checkPhase = '' pytest tests/unit ''; meta = with stdenv.lib; { description = "Google Cloud Dataproc API client library"; homepage = "https://github.com/GoogleCloudPlatform/google-cloud-python"; license = licenses.asl20; maintainers = [ maintainers.costrouc ]; }; }