9 pname = "dbt-postgres";
10 format = "setuptools";
12 inherit (dbt-core) version src;
14 sourceRoot = "${dbt-core.src.name}/plugins/postgres";
16 env.DBT_PSYCOPG2_NAME = "psycopg2";
18 propagatedBuildInputs = [
24 # tests exist for the dbt tool but not for this package specifically
27 pythonImportsCheck = [
28 "dbt.adapters.postgres"
32 description = "Plugin enabling dbt to work with a Postgres database";
33 homepage = "https://github.com/dbt-labs/dbt-core";
34 license = licenses.asl20;
35 maintainers = with maintainers; [ tjni ];