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-bigquery-logging";
14 version = "1.0.1";
15
16 src = fetchPypi {
17 inherit pname version;
18 sha256 = "3cdbf4f82199d2ee0d07fa2c75527661fe034130e27e5c05fd070ed615cd7e23";
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.bigquery_logging"
35 "google.cloud.bigquery_logging_v1"
36 ];
37
38 meta = with lib; {
39 description = "Bigquery logging client library";
40 homepage = "https://github.com/googleapis/python-bigquery-logging";
41 license = licenses.asl20;
42 maintainers = with maintainers; [ fab ];
43 };
44}