mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 15:22:59 +01:00
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:
commit
1f8a8a5acb
1 changed files with 14 additions and 8 deletions
|
@ -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
|
||||||
|
|
Loading…
Reference in a new issue