mirror of
https://github.com/zaphar/dbt-nix.git
synced 2025-07-22 19:50:16 -04:00
23 lines
466 B
Nix
23 lines
466 B
Nix
![]() |
{pkgs, dbt-core, dbt-postgres}:
|
||
|
with pkgs;
|
||
|
with python39Packages;
|
||
|
let inputs = [
|
||
|
dbt-core
|
||
|
boto3
|
||
|
typing-extensions
|
||
|
jinja2
|
||
|
dbt-postgres
|
||
|
#jinja2_3
|
||
|
];
|
||
|
in
|
||
|
buildPythonPackage rec {
|
||
|
pname = "dbt-redshift";
|
||
|
version = "1.0.0";
|
||
|
buildInputs = inputs;
|
||
|
propagatedBuildInputs = inputs;
|
||
|
doCheck = false;
|
||
|
src = fetchPypi {
|
||
|
inherit pname version;
|
||
|
sha256 = "sha256-ZBkhKxxUA1jyubMkCPzmvqyTh8QPgQ2Y33gEOV6Sc78=";
|
||
|
};
|
||
|
}
|