60 lines
1.1 KiB
Nix
60 lines
1.1 KiB
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, agate
|
|
, dbt-core
|
|
, google-cloud-bigquery
|
|
, google-cloud-storage
|
|
, google-cloud-dataproc
|
|
, pytestCheckHook
|
|
, pythonRelaxDepsHook
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "dbt-bigquery";
|
|
version = "1.6.4";
|
|
format = "setuptools";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "dbt-labs";
|
|
repo = pname;
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-m458gg5TQ7jznhA9QNi8KQ+ICxdQn58mS0jvyZ88Fmg=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
pythonRelaxDepsHook
|
|
];
|
|
|
|
pythonRelaxDeps = [
|
|
"agate"
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
agate
|
|
dbt-core
|
|
google-cloud-bigquery
|
|
google-cloud-storage
|
|
google-cloud-dataproc
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
pytestCheckHook
|
|
];
|
|
|
|
pytestFlagsArray = [
|
|
"tests/unit"
|
|
];
|
|
|
|
pythonImportsCheck = [
|
|
"dbt.adapters.bigquery"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Plugin enabling dbt to operate on a BigQuery database";
|
|
homepage = "https://github.com/dbt-labs/dbt-bigquery";
|
|
changelog = "https://github.com/dbt-labs/dbt-bigquery/blob/${version}/CHANGELOG.md";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ tjni ];
|
|
};
|
|
}
|