python310Packages.google-cloud-trace: 1.7.3 -> 1.8.0

Changelog: https://github.com/googleapis/python-trace/blob/v1.8.0/CHANGELOG.md
This commit is contained in:
Fabian Affolter 2022-12-28 16:13:03 +01:00
parent 50bdd1283b
commit 2d2d772b13

View File

@ -2,32 +2,32 @@
, buildPythonPackage
, fetchPypi
, google-api-core
, google-cloud-core
, google-cloud-testutils
, mock
, proto-plus
, pytestCheckHook
, protobuf
, pytest-asyncio
, pytestCheckHook
, pythonOlder
}:
buildPythonPackage rec {
pname = "google-cloud-trace";
version = "1.7.3";
version = "1.8.0";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-HFntFmPn3FPhCrB+nnJlBD9zqG2jDsP2naEl2IxhRqE=";
hash = "sha256-dKywvDNcvDOULHREKcHWIBVVBBzrttICX+VgcborJVI=";
};
propagatedBuildInputs = [
google-api-core
google-cloud-core
proto-plus
];
protobuf
] ++ google-api-core.optional-dependencies.grpc;
checkInputs = [
google-cloud-testutils