mirror of
https://github.com/zaphar/dbt-nix.git
synced 2025-07-23 19:59:48 -04:00
15 lines
319 B
Nix
15 lines
319 B
Nix
{pkgs, dbt-core, ...}:
|
|
with pkgs;
|
|
with python39Packages;
|
|
|
|
buildPythonPackage rec {
|
|
pname = "dbt-sqlite";
|
|
version = "1.0.0";
|
|
propagatedBuildInputs = [
|
|
dbt-core
|
|
];
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "sha256-nIwk30kMvWBtbAPVE1kfdc4l9W3rWdBRB082OyoiccA=";
|
|
};
|
|
} |