1{ stdenv, buildPythonPackage, fetchPypi
2, google_api_core, pytest, mock }:
3
4buildPythonPackage rec {
5 pname = "google-cloud-speech";
6 version = "0.35.0";
7
8 src = fetchPypi {
9 inherit pname version;
10 sha256 = "5db2d69315b3d95d067c9bffe17994b6ee9252702888cc300d76252b451638e1";
11 };
12
13 propagatedBuildInputs = [ google_api_core ];
14 checkInputs = [ pytest mock ];
15
16 # needs credentials
17 doCheck = false;
18
19 meta = with stdenv.lib; {
20 description = "Cloud Speech API enables integration of Google speech recognition into applications.";
21 homepage = "https://googlecloudplatform.github.io/google-cloud-python/latest/speech/";
22 license = licenses.asl20;
23 maintainers = with maintainers; [ vanschelven ];
24 };
25}