b450903751
GitOrigin-RevId: 74a1793c659d09d7cf738005308b1f86c90cb59b
48 lines
974 B
Nix
48 lines
974 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, google-api-core
|
|
, google-auth
|
|
, google-cloud-bigquery
|
|
, pytestCheckHook
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "google-cloud-bigquery-storage";
|
|
version = "2.15.0";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "sha256-v0g6gK4cmELH1cmRl9EDJceEOW3vKgR9GSZ2oHKzrG0=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
google-api-core
|
|
];
|
|
|
|
checkInputs = [
|
|
google-auth
|
|
google-cloud-bigquery
|
|
pytestCheckHook
|
|
];
|
|
|
|
# dependency loop with google-cloud-bigquery
|
|
doCheck = false;
|
|
|
|
preCheck = ''
|
|
rm -r google
|
|
'';
|
|
|
|
pythonImportsCheck = [
|
|
"google.cloud.bigquery_storage"
|
|
"google.cloud.bigquery_storage_v1"
|
|
"google.cloud.bigquery_storage_v1beta2"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "BigQuery Storage API API client library";
|
|
homepage = "https://github.com/googleapis/python-bigquery-storage";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ SuperSandro2000 ];
|
|
};
|
|
}
|