2017-12-20 22:50:31 +00:00
|
|
|
{ stdenv, buildPythonPackage, fetchPypi
|
2018-07-02 15:26:09 +01:00
|
|
|
, google_api_core, pytest, mock }:
|
2017-12-20 22:50:31 +00:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "google-cloud-speech";
|
2019-04-16 01:45:32 +01:00
|
|
|
version = "1.0.0";
|
2017-12-20 22:50:31 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2019-04-16 01:45:32 +01:00
|
|
|
sha256 = "1d0ysapqrcwcyiil7nyh8vbj4i6hk9v23rrm4rdhgm0lwax7i0aj";
|
2017-12-20 22:50:31 +00:00
|
|
|
};
|
|
|
|
|
2018-07-02 15:26:09 +01:00
|
|
|
propagatedBuildInputs = [ google_api_core ];
|
2017-12-20 22:50:31 +00:00
|
|
|
checkInputs = [ pytest mock ];
|
|
|
|
|
2018-11-02 20:23:44 +00:00
|
|
|
checkPhase = ''
|
|
|
|
pytest tests/unit
|
|
|
|
'';
|
2017-12-20 22:50:31 +00: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 ];
|
|
|
|
};
|
|
|
|
}
|