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

View file

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