evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / development / python-modules / dbt-postgres / default.nix
blobf3503eac82d0239cb6139e9160b6cddc4b015fa0
2   lib,
3   agate,
4   buildPythonPackage,
5   fetchFromGitHub,
6   dbt-adapters,
7   dbt-common,
8   dbt-core,
9   hatchling,
10   psycopg2,
11   pythonOlder,
14 buildPythonPackage rec {
15   pname = "dbt-postgres";
16   version = "1.8.2";
17   pyproject = true;
19   disabled = pythonOlder "3.8";
21   src = fetchFromGitHub {
22     owner = "dbt-labs";
23     repo = "dbt-postgres";
24     rev = "refs/tags/v${version}";
25     hash = "sha256-E7Y2lY8aCiAZx5sLWwpOBLTrdOsCQAdWWJTvR2jGOaA=";
26   };
28   env.DBT_PSYCOPG2_NAME = "psycopg2";
30   build-system = [ hatchling ];
32   pythonRemoveDeps = [ "psycopg2-binary" ];
34   dependencies = [
35     agate
36     dbt-adapters
37     dbt-common
38     dbt-core
39     psycopg2
40   ];
42   # tests exist for the dbt tool but not for this package specifically
43   doCheck = false;
45   pythonImportsCheck = [ "dbt.adapters.postgres" ];
47   meta = with lib; {
48     description = "Plugin enabling dbt to work with a Postgres database";
49     homepage = "https://github.com/dbt-labs/dbt-core";
50     license = licenses.asl20;
51     maintainers = with maintainers; [ tjni ];
52   };