about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/dbt-postgres/default.nix
blob: 0478e748f1c6274e79a1fb9b7dc797966d6b5d7f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{ lib
, buildPythonPackage
, agate
, dbt-core
, psycopg2
}:

buildPythonPackage {
  pname = "dbt-postgres";
  format = "setuptools";

  inherit (dbt-core) version src;

  sourceRoot = "${dbt-core.src.name}/plugins/postgres";

  env.DBT_PSYCOPG2_NAME = "psycopg2";

  propagatedBuildInputs = [
    agate
    dbt-core
    psycopg2
  ];

  # tests exist for the dbt tool but not for this package specifically
  doCheck = false;

  pythonImportsCheck = [
    "dbt.adapters.postgres"
  ];

  meta = with lib; {
    description = "Plugin enabling dbt to work with a Postgres database";
    homepage = "https://github.com/dbt-labs/dbt-core";
    license = licenses.asl20;
    maintainers = with maintainers; [ tjni ];
  };
}