3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/python-modules/google-cloud-compute/default.nix
2022-09-18 23:57:42 +02:00

55 lines
1.1 KiB
Nix

{ lib
, buildPythonPackage
, fetchPypi
, pythonOlder
, google-api-core
, mock
, proto-plus
, protobuf
, pytest-asyncio
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "google-cloud-compute";
version = "1.5.2";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-D0pIR1vQEt/7aIxMo0uDlxvt+fwS2DxCurU/lxMHAjo=";
};
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 ];
};
}