1{ lib
2, buildPythonPackage
3, fetchPypi
4, google-api-core
5, libcst
6, proto-plus
7, pytestCheckHook
8, pytest-asyncio
9, pytz
10, mock
11}:
12
13buildPythonPackage rec {
14 pname = "google-cloud-bigquery-datatransfer";
15 version = "3.4.1";
16
17 src = fetchPypi {
18 inherit pname version;
19 sha256 = "fdc8cb68a3ee54780f673f06b3cce83a5bb5d600db7ad363c85e38bf45afb59c";
20 };
21
22 propagatedBuildInputs = [ google-api-core libcst proto-plus pytz ];
23 checkInputs = [ mock pytestCheckHook pytest-asyncio ];
24
25 pythonImportsCheck = [
26 "google.cloud.bigquery_datatransfer"
27 "google.cloud.bigquery_datatransfer_v1"
28 ];
29
30 meta = with lib; {
31 description = "BigQuery Data Transfer API client library";
32 homepage = "https://github.com/googleapis/python-bigquery-datatransfer";
33 license = licenses.asl20;
34 maintainers = with maintainers; [ SuperSandro2000 ];
35 };
36}