Merge pull request #300869 from r-ryantm/auto-update/python311Packages.dbt-redshift

python311Packages.dbt-redshift: 1.7.4 -> 1.7.5
This commit is contained in:
Fabian Affolter 2024-04-02 09:55:12 +02:00 committed by GitHub
commit 1f8a8a5acb
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 14 additions and 8 deletions

View File

@ -6,6 +6,7 @@
, dbt-postgres
, fetchFromGitHub
, pytestCheckHook
, pythonOlder
, pythonRelaxDepsHook
, redshift-connector
, setuptools
@ -13,27 +14,32 @@
buildPythonPackage rec {
pname = "dbt-redshift";
version = "1.7.4";
version = "1.7.5";
pyproject = true;
disabled = pythonOlder "3.10";
src = fetchFromGitHub {
owner = "dbt-labs";
repo = "dbt-redshift";
rev = "refs/tags/v${version}";
hash = "sha256-Ny6Nnb5OhtqSQZ0BMOQrb0ic6i29GVywy3hn3UuVtxE=";
hash = "sha256-wFNPXUU2EuDEiPpEAzjRIRdR27PHLVcOvgQ9E/bpgwM=";
};
nativeBuildInputs = [
pythonRelaxDepsHook
setuptools
];
pythonRelaxDeps = [
"boto3"
"redshift-connector"
];
propagatedBuildInputs = [
nativeBuildInputs = [
pythonRelaxDepsHook
];
build-system = [
setuptools
];
dependencies = [
agate
boto3
dbt-core