Merge pull request #194329 from r-ryantm/auto-update/python310Packages.google-cloud-texttospeech
python310Packages.google-cloud-texttospeech: 2.12.1 -> 2.12.2
This commit is contained in:
commit
fb181bd71c
1 changed files with 16 additions and 4 deletions
|
@ -7,20 +7,32 @@
|
||||||
, mock
|
, mock
|
||||||
, proto-plus
|
, proto-plus
|
||||||
, pytest-asyncio
|
, pytest-asyncio
|
||||||
|
, pythonOlder
|
||||||
}:
|
}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "google-cloud-texttospeech";
|
pname = "google-cloud-texttospeech";
|
||||||
version = "2.12.1";
|
version = "2.12.2";
|
||||||
|
format = "setuptools";
|
||||||
|
|
||||||
|
disabled = pythonOlder "3.8";
|
||||||
|
|
||||||
src = fetchPypi {
|
src = fetchPypi {
|
||||||
inherit pname version;
|
inherit pname version;
|
||||||
sha256 = "sha256-JWwYnz12E56GrUSDoatB8pbS+S9C3ZSPsxDW25GfDhA=";
|
hash = "sha256-z/rOMqQ+UkJl8zw55JP54+s+Qk+gHxmuBDjZaz3Qacs=";
|
||||||
};
|
};
|
||||||
|
|
||||||
propagatedBuildInputs = [ libcst google-api-core proto-plus ];
|
propagatedBuildInputs = [
|
||||||
|
libcst
|
||||||
|
google-api-core
|
||||||
|
proto-plus
|
||||||
|
];
|
||||||
|
|
||||||
checkInputs = [ mock pytest-asyncio pytestCheckHook ];
|
checkInputs = [
|
||||||
|
mock
|
||||||
|
pytest-asyncio
|
||||||
|
pytestCheckHook
|
||||||
|
];
|
||||||
|
|
||||||
disabledTests = [
|
disabledTests = [
|
||||||
# Disable tests that require credentials
|
# Disable tests that require credentials
|
||||||
|
|
Loading…
Reference in a new issue