f34ce41345
GitOrigin-RevId: b73c2221a46c13557b1b3be9c2070cc42cf01eb3
58 lines
1.1 KiB
Nix
58 lines
1.1 KiB
Nix
{
|
|
lib,
|
|
agate,
|
|
boto3,
|
|
buildPythonPackage,
|
|
dbt-core,
|
|
dbt-postgres,
|
|
fetchFromGitHub,
|
|
pytestCheckHook,
|
|
pythonOlder,
|
|
redshift-connector,
|
|
setuptools,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "dbt-redshift";
|
|
version = "1.8.1";
|
|
pyproject = true;
|
|
|
|
disabled = pythonOlder "3.10";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "dbt-labs";
|
|
repo = "dbt-redshift";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-SmFN1GXX14L+3jtAo5Vqm53HLRaear2U/KI2Afx0ztU=";
|
|
};
|
|
|
|
pythonRelaxDeps = [
|
|
"boto3"
|
|
"redshift-connector"
|
|
];
|
|
|
|
|
|
build-system = [ setuptools ];
|
|
|
|
dependencies = [
|
|
agate
|
|
boto3
|
|
dbt-core
|
|
dbt-postgres
|
|
redshift-connector
|
|
];
|
|
|
|
nativeCheckInputs = [ pytestCheckHook ];
|
|
|
|
pytestFlagsArray = [ "tests/unit" ];
|
|
|
|
pythonImportsCheck = [ "dbt.adapters.redshift" ];
|
|
|
|
meta = with lib; {
|
|
description = "Plugin enabling dbt to work with Amazon Redshift";
|
|
homepage = "https://github.com/dbt-labs/dbt-redshift";
|
|
changelog = "https://github.com/dbt-labs/dbt-redshift/blob/${version}/CHANGELOG.md";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ tjni ];
|
|
};
|
|
}
|