python312Packages.dbt-postgres: 1.8.2 -> 1.9.0 (#365456)

This commit is contained in:
Theodore Ni
2024-12-21 15:07:12 -06:00
committed by GitHub
@@ -13,20 +13,18 @@
buildPythonPackage rec {
pname = "dbt-postgres";
version = "1.8.2";
version = "1.9.0";
pyproject = true;
disabled = pythonOlder "3.8";
disabled = pythonOlder "3.9";
src = fetchFromGitHub {
owner = "dbt-labs";
repo = "dbt-postgres";
rev = "refs/tags/v${version}";
hash = "sha256-E7Y2lY8aCiAZx5sLWwpOBLTrdOsCQAdWWJTvR2jGOaA=";
tag = "v${version}";
hash = "sha256-lywWf78rluX17D5bcfehHd7X18tAdw3HZ65v440jETc=";
};
env.DBT_PSYCOPG2_NAME = "psycopg2";
build-system = [ hatchling ];
pythonRemoveDeps = [ "psycopg2-binary" ];