Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ stdenv 2, buildPythonPackage 3, fetchPypi 4, google_api_core 5, pytest 6, mock 7}: 8 9buildPythonPackage rec { 10 pname = "google-cloud-texttospeech"; 11 version = "0.5.0"; 12 13 src = fetchPypi { 14 inherit pname version; 15 sha256 = "75562a8db2b0268f57c64e448d697fe82c0ffa889f09be8cbc6ba5369c9a0c59"; 16 }; 17 18 checkInputs = [ pytest mock ]; 19 propagatedBuildInputs = [ google_api_core ]; 20 21 checkPhase = '' 22 pytest tests/unit 23 ''; 24 25 meta = with stdenv.lib; { 26 description = "Google Cloud Text-to-Speech API client library"; 27 homepage = https://github.com/GoogleCloudPlatform/google-cloud-python; 28 license = licenses.asl20; 29 maintainers = [ maintainers.costrouc ]; 30 }; 31}