pythonPackages.google_cloud_os_config: Init at 1.0.0
This commit is contained in:
parent
094127b5c9
commit
4ea516df5e
@ -0,0 +1,29 @@
|
||||
{ lib, buildPythonPackage, fetchPypi, google_api_core, libcst, mock, proto-plus, pytestCheckHook, pytest-asyncio }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "google-cloud-os-config";
|
||||
version = "1.0.0";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "07zvagy9hwaccwvg1xad5nkalgkria0maa5yxiwqf1yk9f7gbyq1";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ google_api_core libcst proto-plus ];
|
||||
|
||||
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 ];
|
||||
};
|
||||
}
|
@ -2567,6 +2567,8 @@ in {
|
||||
|
||||
google_cloud_org_policy = callPackage ../development/python-modules/google_cloud_org_policy { };
|
||||
|
||||
google_cloud_os_config = callPackage ../development/python-modules/google_cloud_os_config { };
|
||||
|
||||
google_cloud_pubsub = callPackage ../development/python-modules/google_cloud_pubsub { };
|
||||
|
||||
google_cloud_redis = callPackage ../development/python-modules/google_cloud_redis { };
|
||||
|
Loading…
Reference in New Issue
Block a user