mirror of
https://github.com/zaphar/dbt-nix.git
synced 2025-07-22 19:50:16 -04:00
ensure sqlite3 is always bundled with the plugin
This commit is contained in:
parent
9b4b67fa3a
commit
9d77b1220f
@ -40,7 +40,7 @@
|
||||
core = pkgs.mkShell { packages = [ dbt-core ]; };
|
||||
postgres = pkgs.mkShell { packages = [dbt-core dbt-postgres ]; };
|
||||
redshift = pkgs.mkShell { packages = [dbt-core dbt-redshift ]; };
|
||||
sqlite = pkgs.mkShell { packages = [dbt-core dbt-sqlite pkgs.sqlite ]; };
|
||||
sqlite = pkgs.mkShell { packages = [dbt-core dbt-sqlite ]; };
|
||||
};
|
||||
});
|
||||
}
|
@ -1,8 +1,8 @@
|
||||
{pkgs, dbt-core, ...}:
|
||||
with pkgs;
|
||||
with python39Packages;
|
||||
|
||||
buildPythonPackage rec {
|
||||
let
|
||||
dbt-sqlite = buildPythonPackage rec {
|
||||
pname = "dbt-sqlite";
|
||||
version = "1.0.0";
|
||||
propagatedBuildInputs = [
|
||||
@ -12,4 +12,8 @@ buildPythonPackage rec {
|
||||
inherit pname version;
|
||||
sha256 = "sha256-nIwk30kMvWBtbAPVE1kfdc4l9W3rWdBRB082OyoiccA=";
|
||||
};
|
||||
};
|
||||
in symlinkJoin {
|
||||
name = "dbt-sqlite-bundled";
|
||||
paths = [ dbt-sqlite sqlite ];
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user