depot/third_party/nixpkgs/pkgs/development/python-modules/dbt-postgres/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

42 lines
801 B
Nix

{
lib,
agate,
buildPythonPackage,
dbt-core,
psycopg2,
pythonOlder,
setuptools,
}:
buildPythonPackage {
pname = "dbt-postgres";
pyproject = true;
inherit (dbt-core) version src;
disabled = pythonOlder "3.7";
sourceRoot = "${dbt-core.src.name}/plugins/postgres";
env.DBT_PSYCOPG2_NAME = "psycopg2";
build-system = [ setuptools ];
dependencies = [
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 ];
};
}