python310Packages.google-api-core: 2.10.2 -> 2.11.0

Changelog: https://github.com/googleapis/python-api-core/blob/v2.11.0/CHANGELOG.md
This commit is contained in:
Fabian Affolter 2022-12-28 12:59:17 +01:00
parent 76784926c3
commit ef2b879145

View file

@ -4,38 +4,50 @@
, google-auth
, googleapis-common-protos
, grpcio
, grpcio-gcp
, grpcio-status
, protobuf
, proto-plus
, requests
, mock
, proto-plus
, protobuf
, pytest-asyncio
, pytestCheckHook
, pythonOlder
, requests
}:
buildPythonPackage rec {
pname = "google-api-core";
version = "2.10.2";
version = "2.11.0";
format = "setuptools";
disabled = pythonOlder "3.6";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-EMBvdzn+V3gfh1Izdejho6RnS/Y5LNYTGjIiGCuXEyA=";
hash = "sha256-S5u11aOAoL76BXOzAmUbipqJJiwXMON79CPOxRGATCI=";
};
propagatedBuildInputs = [
googleapis-common-protos
google-auth
grpcio
grpcio-status
protobuf
proto-plus
requests
];
passthru.optional-dependencies = {
grpc = [
grpcio
grpcio-status
];
grpcgcp = [
grpcio-gcp
];
grpcio-gcp = [
grpcio-gcp
];
};
checkInputs = [
mock
pytest-asyncio