dbt-nix/nix/dbt-core/default.nix

42 lines
738 B
Nix
Raw Normal View History

2022-07-13 10:42:07 -04:00
{pkgs, version}:
2022-04-03 17:19:40 -04:00
with pkgs;
with python39Packages;
let inputs = [
jsonschema
networkx
mashumaro
hologram
colorama
packaging
requests
agate
minimal-snowplow-tracker
click
werkzeug
jinja2
logbook
dbt-extractor
typing-extensions
sqlparse
python-dateutil
msgpack
2022-04-04 12:05:39 -04:00
pyyaml
2022-07-13 10:42:07 -04:00
markupsafe
2022-04-03 17:19:40 -04:00
];
in
buildPythonPackage rec {
pname = "dbt-core";
2022-07-13 10:42:07 -04:00
inherit version;
2022-04-03 17:19:40 -04:00
buildInputs = inputs;
propagatedBuildInputs = inputs;
doCheck = false;
src = fetchPypi {
inherit pname version;
2022-07-13 10:42:07 -04:00
sha256 = "sha256-PjPOW+dODU+fKK12tLHeVcs0PUxTw6j5jCRVGIGu3z4=";
2022-04-03 17:19:40 -04:00
};
}