Merge pull request #279167 from fabaff/google-cloud-compute-bump

python311Packages.google-cloud-compute: 1.14.1 -> 1.15.0
This commit is contained in:
Fabian Affolter 2024-01-08 23:48:07 +01:00 committed by GitHub
commit 83255ff9ba
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -8,20 +8,25 @@
, protobuf
, pytest-asyncio
, pytestCheckHook
, setuptools
}:
buildPythonPackage rec {
pname = "google-cloud-compute";
version = "1.14.1";
format = "setuptools";
version = "1.15.0";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-rNmHZH18gmqpe0QYFBx0Dq1eiBHTNJMV8viaMMAcf0s=";
hash = "sha256-+mda6vBMYnpELNMDIZbW82rWhEO6MnyXZ6a/vECkKyE=";
};
nativeBuildInputs = [
setuptools
];
propagatedBuildInputs = [
google-api-core
proto-plus
@ -39,8 +44,8 @@ buildPythonPackage rec {
"google.cloud.compute_v1"
];
# disable tests that require credentials
disabledTestPaths = [
# Disable tests that require credentials
"tests/system/test_addresses.py"
"tests/system/test_instance_group.py"
"tests/system/test_pagination.py"
@ -49,8 +54,8 @@ buildPythonPackage rec {
meta = with lib; {
description = "API Client library for Google Cloud Compute";
homepage = "https://github.com/googleapis/python-compute";
changelog = "https://github.com/googleapis/python-compute/blob/v${version}/CHANGELOG.md";
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 = licenses.asl20;
maintainers = with maintainers; [ jpetrucciani ];
};