python310Packages.google-cloud-videointelligence: 2.8.3 -> 2.9.0

Changelog: https://github.com/googleapis/python-videointelligence/blob/v2.9.0/CHANGELOG.md
This commit is contained in:
Fabian Affolter 2022-12-28 15:59:24 +01:00
parent 5ac82eb2a5
commit bfe260a799

View File

@ -1,31 +1,33 @@
{ lib
, buildPythonPackage
, fetchPypi
, mock
, google-api-core
, google-cloud-testutils
, mock
, proto-plus
, pytestCheckHook
, protobuf
, pytest-asyncio
, pytestCheckHook
, pythonOlder
}:
buildPythonPackage rec {
pname = "google-cloud-videointelligence";
version = "2.8.3";
version = "2.9.0";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-pB7exeGYpFT4nf3YuIhoI+bqG6YYEP6oWs0tohkOIbw=";
hash = "sha256-gd0cJX6XHwQguNJ7jFDUVwQg9eNk0ZUL4VH5L+3K+Lw=";
};
propagatedBuildInputs = [
google-api-core
proto-plus
];
protobuf
] ++ google-api-core.optional-dependencies.grpc;
checkInputs = [
google-cloud-testutils