Files
nixpkgs/pkgs/development/python-modules/google-cloud-compute/default.nix
T
Ihar Hrachyshka 567e8dfd8e treewide: clean up 'meta = with' pattern
This commit was created by a combination of scripts and tools:
- an ast-grep script to prefix things in meta with `lib.`,
- a modified nixf-diagnose / nixf combination to remove unused `with
lib;`, and
- regular nixfmt.

Co-authored-by: Wolfgang Walther <walther@technowledgy.de>
2025-12-10 18:09:49 +01:00

64 lines
1.4 KiB
Nix

{
lib,
buildPythonPackage,
fetchPypi,
pythonOlder,
google-api-core,
mock,
proto-plus,
protobuf,
pytest-asyncio,
pytestCheckHook,
setuptools,
}:
buildPythonPackage rec {
pname = "google-cloud-compute";
version = "1.37.0";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchPypi {
pname = "google_cloud_compute";
inherit version;
hash = "sha256-J/ApQytSkwN59YnPP6XjOs6WajOepUzWRLK1+eCkgeM=";
};
build-system = [ setuptools ];
dependencies = [
google-api-core
proto-plus
protobuf
]
++ google-api-core.optional-dependencies.grpc;
nativeCheckInputs = [
mock
pytest-asyncio
pytestCheckHook
];
pythonImportsCheck = [
"google.cloud.compute"
"google.cloud.compute_v1"
];
disabledTestPaths = [
# Disable tests that require credentials
"tests/system/test_addresses.py"
"tests/system/test_instance_group.py"
"tests/system/test_pagination.py"
"tests/system/test_smoke.py"
];
meta = {
description = "API Client library for Google Cloud Compute";
homepage = "https://github.com/googleapis/google-cloud-python/tree/main/packages/google-cloud-compute";
changelog = "https://github.com/googleapis/google-cloud-python/blob/google-cloud-compute-v${version}/packages/google-cloud-compute/CHANGELOG.md";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ jpetrucciani ];
};
}