python311Packages.dbt-postgres: 1.7.4 -> 1.7.8
Diff: https://github.com/dbt-labs/dbt-core/compare/refs/tags/v1.7.8...v1.7.8
This commit is contained in:
parent
1890e0814e
commit
37fc0adf4e
1 changed files with 10 additions and 2 deletions
|
@ -1,20 +1,28 @@
|
||||||
{ lib
|
{ lib
|
||||||
, buildPythonPackage
|
|
||||||
, agate
|
, agate
|
||||||
|
, buildPythonPackage
|
||||||
, dbt-core
|
, dbt-core
|
||||||
, psycopg2
|
, psycopg2
|
||||||
|
, pythonOlder
|
||||||
|
, setuptools
|
||||||
}:
|
}:
|
||||||
|
|
||||||
buildPythonPackage {
|
buildPythonPackage {
|
||||||
pname = "dbt-postgres";
|
pname = "dbt-postgres";
|
||||||
format = "setuptools";
|
pyproject = true;
|
||||||
|
|
||||||
inherit (dbt-core) version src;
|
inherit (dbt-core) version src;
|
||||||
|
|
||||||
|
disabled = pythonOlder "3.7";
|
||||||
|
|
||||||
sourceRoot = "${dbt-core.src.name}/plugins/postgres";
|
sourceRoot = "${dbt-core.src.name}/plugins/postgres";
|
||||||
|
|
||||||
env.DBT_PSYCOPG2_NAME = "psycopg2";
|
env.DBT_PSYCOPG2_NAME = "psycopg2";
|
||||||
|
|
||||||
|
nativeBuildInputs = [
|
||||||
|
setuptools
|
||||||
|
];
|
||||||
|
|
||||||
propagatedBuildInputs = [
|
propagatedBuildInputs = [
|
||||||
agate
|
agate
|
||||||
dbt-core
|
dbt-core
|
||||||
|
|
Loading…
Reference in a new issue