nixpkgs/pkgs/development/python-modules/google-cloud-monitoring/default.nix

71 lines
1.5 KiB
Nix

{ lib
, buildPythonPackage
, fetchPypi
, google-api-core
, google-cloud-testutils
, mock
, pandas
, proto-plus
, protobuf
, pytest-asyncio
, pytestCheckHook
, pythonOlder
, setuptools
}:
buildPythonPackage rec {
pname = "google-cloud-monitoring";
version = "2.19.3";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-N2QeU3mG/SIn+HOLh51gWozfTDFc3GDobhCTR6scodc=";
};
nativeBuildInputs = [
setuptools
];
propagatedBuildInputs = [
google-api-core
proto-plus
protobuf
] ++ google-api-core.optional-dependencies.grpc;
passthru.optional-dependencies = {
pandas = [
pandas
];
};
nativeCheckInputs = [
google-cloud-testutils
mock
pytestCheckHook
pytest-asyncio
] ++ passthru.optional-dependencies.pandas;
disabledTests = [
# Test requires credentials
"test_list_monitored_resource_descriptors"
# Test requires PRROJECT_ID
"test_list_alert_policies"
];
pythonImportsCheck = [
"google.cloud.monitoring"
"google.cloud.monitoring_v3"
];
meta = with lib; {
description = "Stackdriver Monitoring API client library";
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; [ ];
};
}