2021-01-25 09:26:54 +01:00
|
|
|
{ lib
|
2018-11-02 19:54:03 +01:00
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
2021-01-06 10:46:48 +01:00
|
|
|
, google-api-core
|
2021-01-05 11:05:34 +01:00
|
|
|
, libcst
|
|
|
|
, proto-plus
|
|
|
|
, pytestCheckHook
|
|
|
|
, pytest-asyncio
|
2019-02-03 11:56:30 +01:00
|
|
|
, mock
|
2018-11-02 19:54:03 +01:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "google-cloud-bigquery-datatransfer";
|
2021-06-06 21:55:11 +02:00
|
|
|
version = "3.1.1";
|
2018-11-02 19:54:03 +01:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2021-06-18 23:47:18 +02:00
|
|
|
sha256 = "9ac8cd06a60bfdc504f39fbcd086e5180c8684cffefe7745a9ff6a639c575629";
|
2018-11-02 19:54:03 +01:00
|
|
|
};
|
|
|
|
|
2021-01-06 10:46:48 +01:00
|
|
|
propagatedBuildInputs = [ google-api-core libcst proto-plus ];
|
2021-01-05 11:05:34 +01:00
|
|
|
checkInputs = [ mock pytestCheckHook pytest-asyncio ];
|
2018-11-02 19:54:03 +01:00
|
|
|
|
2021-01-05 11:05:34 +01:00
|
|
|
pythonImportsCheck = [
|
|
|
|
"google.cloud.bigquery_datatransfer"
|
|
|
|
"google.cloud.bigquery_datatransfer_v1"
|
|
|
|
];
|
2018-11-02 19:54:03 +01:00
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2018-11-02 19:54:03 +01:00
|
|
|
description = "BigQuery Data Transfer API client library";
|
2021-01-05 11:05:34 +01:00
|
|
|
homepage = "https://github.com/googleapis/python-bigquery-datatransfer";
|
2018-11-02 19:54:03 +01:00
|
|
|
license = licenses.asl20;
|
2021-01-05 11:05:34 +01:00
|
|
|
maintainers = with maintainers; [ SuperSandro2000 ];
|
2018-11-02 19:54:03 +01:00
|
|
|
};
|
|
|
|
}
|