python310Packages.google-cloud-language: 2.6.1 -> 2.7.0

Changelog: https://github.com/googleapis/python-language/blob/v2.7.0/CHANGELOG.md
This commit is contained in:
Fabian Affolter 2022-12-28 17:04:19 +01:00
parent 07a934e000
commit 3a9ea3107a

View File

@ -2,34 +2,32 @@
, buildPythonPackage
, fetchPypi
, google-api-core
, libcst
, mock
, proto-plus
, pytestCheckHook
, protobuf
, pytest-asyncio
, pytestCheckHook
, pythonOlder
}:
buildPythonPackage rec {
pname = "google-cloud-language";
version = "2.6.1";
version = "2.7.0";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-KAZmikDsTmNarRo9fxrTR5EtGfSYm1i4rP1iX8pa6Zo=";
hash = "sha256-2BVkbQt6y9WGLjFBCt4pXPtGcmcsF8FxThOUIu7CgR8=";
};
propagatedBuildInputs = [
google-api-core
libcst
proto-plus
];
protobuf
] ++ google-api-core.optional-dependencies.grpc;
checkInputs = [
mock
pytestCheckHook
pytest-asyncio
];