Merge pull request #188835 from jpetrucciani/jacobi_add_google-cloud-compute

python3Packages.google-cloud-compute: init at 1.4.0
This commit is contained in:
Fabian Affolter 2022-08-31 19:52:48 +02:00 committed by GitHub
commit 1e0e95e88e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 56 additions and 0 deletions

View file

@ -0,0 +1,54 @@
{ lib
, buildPythonPackage
, fetchPypi
, pythonOlder
, google-api-core
, mock
, proto-plus
, protobuf
, pytest-asyncio
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "google-cloud-compute";
version = "1.4.0";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
sha256 = "0sgp0xa9cfmgyb1dwdy1f4q9dfr3lgsgm7vbiks9xmiaf0fr221m";
};
propagatedBuildInputs = [
google-api-core
proto-plus
protobuf
];
checkInputs = [
mock
pytest-asyncio
pytestCheckHook
];
pythonImportsCheck = [
"google.cloud.compute"
"google.cloud.compute_v1"
];
# disable tests that require credentials
disabledTestPaths = [
"tests/system/test_addresses.py"
"tests/system/test_instance_group.py"
"tests/system/test_pagination.py"
"tests/system/test_smoke.py"
];
meta = with lib; {
description = "API Client library for Google Cloud Compute";
homepage = "https://github.com/googleapis/python-compute";
license = licenses.asl20;
maintainers = with maintainers; [ jpetrucciani ];
};
}

View file

@ -3786,6 +3786,8 @@ in {
google-cloud-bigtable = callPackage ../development/python-modules/google-cloud-bigtable { };
google-cloud-compute = callPackage ../development/python-modules/google-cloud-compute { };
google-cloud-container = callPackage ../development/python-modules/google-cloud-container { };
google-cloud-core = callPackage ../development/python-modules/google-cloud-core { };