lol

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

python312Packages.google-cloud-monitoring: 2.19.3 -> 2.21.0

authored by

Fabian Affolter and committed by
GitHub
7c5f676c a7931ada

+19 -22
+19 -22
pkgs/development/python-modules/google-cloud-monitoring/default.nix
··· 1 - { lib 2 - , buildPythonPackage 3 - , fetchPypi 4 - , google-api-core 5 - , google-cloud-testutils 6 - , mock 7 - , pandas 8 - , proto-plus 9 - , protobuf 10 - , pytest-asyncio 11 - , pytestCheckHook 12 - , pythonOlder 13 - , setuptools 1 + { 2 + lib, 3 + buildPythonPackage, 4 + fetchPypi, 5 + google-api-core, 6 + google-cloud-testutils, 7 + mock, 8 + pandas, 9 + proto-plus, 10 + protobuf, 11 + pytest-asyncio, 12 + pytestCheckHook, 13 + pythonOlder, 14 + setuptools, 14 15 }: 15 16 16 17 buildPythonPackage rec { 17 18 pname = "google-cloud-monitoring"; 18 - version = "2.19.3"; 19 + version = "2.21.0"; 19 20 pyproject = true; 20 21 21 22 disabled = pythonOlder "3.7"; 22 23 23 24 src = fetchPypi { 24 25 inherit pname version; 25 - hash = "sha256-N2QeU3mG/SIn+HOLh51gWozfTDFc3GDobhCTR6scodc="; 26 + hash = "sha256-57HIdY/DVj/7mjR7xRcuJ4L0TBIbyA/BUoPiic/2db8="; 26 27 }; 27 28 28 - nativeBuildInputs = [ 29 - setuptools 30 - ]; 29 + build-system = [ setuptools ]; 31 30 32 - propagatedBuildInputs = [ 31 + dependencies = [ 33 32 google-api-core 34 33 proto-plus 35 34 protobuf 36 35 ] ++ google-api-core.optional-dependencies.grpc; 37 36 38 37 passthru.optional-dependencies = { 39 - pandas = [ 40 - pandas 41 - ]; 38 + pandas = [ pandas ]; 42 39 }; 43 40 44 41 nativeCheckInputs = [