2021-01-06 10:46:48 +01:00
|
|
|
{ lib, buildPythonPackage, fetchPypi, google-api-core, libcst, mock, proto-plus, pytestCheckHook, pytest-asyncio }:
|
2021-01-05 10:56:41 +01:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "google-cloud-os-config";
|
2022-02-25 12:51:17 +01:00
|
|
|
version = "1.10.0";
|
2021-01-05 10:56:41 +01:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2022-02-25 12:51:17 +01:00
|
|
|
sha256 = "sha256-ng1XmHQ4h32cyz68PjHSzfSmCB2vrwkGkzCtz4vZmcM=";
|
2021-01-05 10:56:41 +01:00
|
|
|
};
|
|
|
|
|
2021-01-06 10:46:48 +01:00
|
|
|
propagatedBuildInputs = [ google-api-core libcst proto-plus ];
|
2021-01-05 10:56:41 +01:00
|
|
|
|
|
|
|
checkInputs = [ mock pytestCheckHook pytest-asyncio ];
|
|
|
|
|
|
|
|
pythonImportsCheck = [ "google.cloud.osconfig" ];
|
|
|
|
|
|
|
|
disabledTests = [
|
|
|
|
"test_patch_deployment"
|
|
|
|
"test_patch_job"
|
|
|
|
];
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Google Cloud OS Config API client library";
|
|
|
|
homepage = "https://github.com/googleapis/python-os-config";
|
|
|
|
license = licenses.asl20;
|
|
|
|
maintainers = with maintainers; [ SuperSandro2000 ];
|
|
|
|
};
|
|
|
|
}
|