python3Packages.google-cloud-appengine-logging: init at 0.1.0

This commit is contained in:
Fabian Affolter 2021-06-06 22:35:17 +02:00
parent 310b8ea912
commit 7b9b6f1e91
2 changed files with 47 additions and 0 deletions

View file

@ -0,0 +1,45 @@
{ lib
, buildPythonPackage
, fetchPypi
, google-api-core
, grpc_google_iam_v1
, mock
, proto-plus
, pytest-asyncio
, pytestCheckHook
, pythonOlder
}:
buildPythonPackage rec {
pname = "google-cloud-appengine-logging";
version = "0.1.0";
src = fetchPypi {
inherit pname version;
sha256 = "0rkayy2qzsc70b0rdvzd2bxwp5f07rfqb95cyj57dkphq71mrrhw";
};
propagatedBuildInputs = [
google-api-core
grpc_google_iam_v1
proto-plus
];
checkInputs = [
mock
pytestCheckHook
pytest-asyncio
];
pythonImportsCheck = [
"google.cloud.appengine_logging"
"google.cloud.appengine_logging_v1"
];
meta = with lib; {
description = "Appengine logging client library";
homepage = "https://github.com/googleapis/python-appengine-logging";
license = licenses.asl20;
maintainers = with maintainers; [ fab ];
};
}

View file

@ -2910,6 +2910,8 @@ in {
google-cloud-access-context-manager = callPackage ../development/python-modules/google-cloud-access-context-manager { };
google-cloud-appengine-logging = callPackage ../development/python-modules/google-cloud-appengine-logging { };
google-cloud-asset = callPackage ../development/python-modules/google-cloud-asset { };
google-cloud-automl = callPackage ../development/python-modules/google-cloud-automl { };