Merge pull request #279166 from fabaff/google-cloud-monitoring-bump

python311Packages.google-cloud-monitoring: 2.16.0 -> 2.18.0
This commit is contained in:
Fabian Affolter
2024-01-07 09:59:22 +01:00
committed by GitHub
@@ -4,26 +4,31 @@
, google-api-core
, google-cloud-testutils
, mock
, proto-plus
, pandas
, pytestCheckHook
, pytest-asyncio
, proto-plus
, protobuf
, pytest-asyncio
, pytestCheckHook
, pythonOlder
, setuptools
}:
buildPythonPackage rec {
pname = "google-cloud-monitoring";
version = "2.16.0";
format = "setuptools";
version = "2.18.0";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-PRhRAJMSraXoq/IP92GvhHS3UwYKtuC31uxHvBHysTY=";
hash = "sha256-Bswdf7dcXlC1S8wASUHqSyCnqfCe1+bnU1FP2MQ2CWo=";
};
nativeBuildInputs = [
setuptools
];
propagatedBuildInputs = [
google-api-core
proto-plus
@@ -44,8 +49,10 @@ buildPythonPackage rec {
] ++ passthru.optional-dependencies.pandas;
disabledTests = [
# requires credentials
# Test requires credentials
"test_list_monitored_resource_descriptors"
# Test requires PRROJECT_ID
"test_list_alert_policies"
];
pythonImportsCheck = [
@@ -55,8 +62,8 @@ buildPythonPackage rec {
meta = with lib; {
description = "Stackdriver Monitoring API client library";
homepage = "https://github.com/googleapis/python-monitoring";
changelog = "https://github.com/googleapis/python-monitoring/blob/v${version}/CHANGELOG.md";
homepage = "https://github.com/googleapis/google-cloud-python/tree/main/packages/google-cloud-monitoring";
changelog = "https://github.com/googleapis/google-cloud-python/tree/google-cloud-monitoring-v${version}/packages/google-cloud-monitoring";
license = licenses.asl20;
maintainers = with maintainers; [ ];
};