mirror of
https://github.com/zaphar/dbt-nix.git
synced 2025-07-22 19:50:16 -04:00
Add custom shells for various plugins
This commit is contained in:
parent
49decc7aea
commit
eb7d3644db
@ -34,5 +34,11 @@
|
|||||||
devShell = pkgs.mkShell {
|
devShell = pkgs.mkShell {
|
||||||
packages = [ dbt-core dbt-redshift dbt-postgres pkgs.python39 pkgs.python39Packages.pip ];
|
packages = [ dbt-core dbt-redshift dbt-postgres pkgs.python39 pkgs.python39Packages.pip ];
|
||||||
};
|
};
|
||||||
|
devShells = {
|
||||||
|
full = pkgs.mkShell { packages = [ dbt-core dbt-postgres dbt-redshift ]; };
|
||||||
|
core = pkgs.mkShell { packages = [ dbt-core ]; };
|
||||||
|
postgres = pkgs.mkShell { packages = [dbt-core dbt-postgres ]; };
|
||||||
|
redshift = pkgs.mkShell { packages = [dbt-core dbt-redshift ]; };
|
||||||
|
};
|
||||||
});
|
});
|
||||||
}
|
}
|
Loading…
x
Reference in New Issue
Block a user