{ stdenv, buildPythonPackage, fetchPypi , google_api_core, pytest, mock }: buildPythonPackage rec { pname = "google-cloud-speech"; version = "1.2.0"; src = fetchPypi { inherit pname version; sha256 = "f8a1f67b01b5b8bd22fa3ba95a4b99ae4a55b6299665d5ae1afa3db7f6706c32"; }; propagatedBuildInputs = [ google_api_core ]; checkInputs = [ pytest mock ]; checkPhase = '' pytest tests/unit ''; meta = with stdenv.lib; { description = "Cloud Speech API enables integration of Google speech recognition into applications."; homepage = "https://github.com/googleapis/google-cloud-python/tree/master/speech"; license = licenses.asl20; maintainers = with maintainers; [ vanschelven ]; }; }