1{ lib
2, buildPythonPackage
3, fetchPypi
4, google-api-core
5, grpc-google-iam-v1
6, mock
7, proto-plus
8, pytest-asyncio
9, pytestCheckHook
10}:
11
12buildPythonPackage rec {
13 pname = "google-cloud-appengine-logging";
14 version = "1.1.0";
15
16 src = fetchPypi {
17 inherit pname version;
18 sha256 = "91fe9b0833f6e1a46293dcc0e483716372c9ff4a95ebe51276c5f0092cb9defd";
19 };
20
21 propagatedBuildInputs = [
22 google-api-core
23 grpc-google-iam-v1
24 proto-plus
25 ];
26
27 checkInputs = [
28 mock
29 pytestCheckHook
30 pytest-asyncio
31 ];
32
33 pythonImportsCheck = [
34 "google.cloud.appengine_logging"
35 "google.cloud.appengine_logging_v1"
36 ];
37
38 meta = with lib; {
39 description = "Appengine logging client library";
40 homepage = "https://github.com/googleapis/python-appengine-logging";
41 license = licenses.asl20;
42 maintainers = with maintainers; [ fab ];
43 };
44}