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