2017-12-20 23:50:31 +01:00
|
|
|
{ stdenv, buildPythonPackage, fetchPypi
|
2018-07-02 16:26:09 +02:00
|
|
|
, google_api_core, pytest, mock }:
|
2017-12-20 23:50:31 +01:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "google-cloud-speech";
|
2018-06-12 18:47:01 +02:00
|
|
|
version = "0.34.0";
|
2017-12-20 23:50:31 +01:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2018-06-12 18:47:01 +02:00
|
|
|
sha256 = "8396646aa9de210bacb144fabd82ab5fe577b3b11708725c879b72c96009d631";
|
2017-12-20 23:50:31 +01:00
|
|
|
};
|
|
|
|
|
2018-07-02 16:26:09 +02:00
|
|
|
propagatedBuildInputs = [ google_api_core ];
|
2017-12-20 23:50:31 +01:00
|
|
|
checkInputs = [ pytest mock ];
|
|
|
|
|
2018-03-24 19:36:06 +01:00
|
|
|
# needs credentials
|
|
|
|
doCheck = false;
|
2017-12-20 23:50:31 +01:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Cloud Speech API enables integration of Google speech recognition into applications.";
|
|
|
|
homepage = "https://googlecloudplatform.github.io/google-cloud-python/latest/speech/";
|
|
|
|
license = licenses.asl20;
|
|
|
|
maintainers = with maintainers; [ vanschelven ];
|
|
|
|
};
|
|
|
|
}
|