python312Packages.google-cloud-trace: 1.13.4 -> 1.13.5 (#339481)

This commit is contained in:
Fabian Affolter 2024-09-04 12:55:46 +02:00 committed by GitHub
commit eba805c4d7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -15,19 +15,20 @@
buildPythonPackage rec {
pname = "google-cloud-trace";
version = "1.13.4";
version = "1.13.5";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-wCO8ySoD2iAsA0ydtQki65yw1qteAHn1EUFLFhV0qdQ=";
pname = "google_cloud_trace";
inherit version;
hash = "sha256-aJVMHEriU29cw3RzbQZc6WNwi9NcnZXvNuiz1L8HxqI=";
};
nativeBuildInputs = [ setuptools ];
build-system = [ setuptools ];
propagatedBuildInputs = [
dependencies = [
google-api-core
proto-plus
protobuf
@ -41,7 +42,7 @@ buildPythonPackage rec {
];
disabledTests = [
# require credentials
# Tests require credentials
"test_batch_write_spans"
"test_list_traces"
];