lol

python312Packages.dbt-snowflake: 1.9.0 -> 1.9.1

Diff: https://github.com/dbt-labs/dbt-snowflake/compare/refs/tags/v1.9.0...v1.9.1

Changelog: https://github.com/dbt-labs/dbt-snowflake/blob/v1.9.1/CHANGELOG.md

+5 -8
+5 -8
pkgs/development/python-modules/dbt-snowflake/default.nix
··· 4 4 dbt-core, 5 5 fetchFromGitHub, 6 6 pytestCheckHook, 7 - pythonOlder, 8 7 setuptools, 9 8 snowflake-connector-python, 10 9 }: 11 10 12 11 buildPythonPackage rec { 13 12 pname = "dbt-snowflake"; 14 - version = "1.9.0"; 13 + version = "1.9.1"; 15 14 pyproject = true; 16 15 17 - disabled = pythonOlder "3.7"; 18 - 19 16 src = fetchFromGitHub { 20 17 owner = "dbt-labs"; 21 18 repo = "dbt-snowflake"; 22 19 tag = "v${version}"; 23 - hash = "sha256-Oyh+f8IQrxWbMOwcZzoqkytVH2E5FVbCjEqXUtMxfsw="; 20 + hash = "sha256-oPzSdAQgb2fKES3YcSGYjILFqixxxjdLCNVytVPecTg="; 24 21 }; 25 22 26 23 build-system = [ setuptools ]; ··· 36 33 37 34 pythonImportsCheck = [ "dbt.adapters.snowflake" ]; 38 35 39 - meta = with lib; { 36 + meta = { 40 37 description = "Plugin enabling dbt to work with Snowflake"; 41 38 homepage = "https://github.com/dbt-labs/dbt-snowflake"; 42 39 changelog = "https://github.com/dbt-labs/dbt-snowflake/blob/${src.tag}/CHANGELOG.md"; 43 - license = licenses.asl20; 44 - maintainers = with maintainers; [ tjni ]; 40 + license = lib.licenses.asl20; 41 + maintainers = with lib.maintainers; [ tjni ]; 45 42 }; 46 43 }