From 3b9b33941007764dfcb64664ef6f4cae373b0d69 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Tue, 20 Dec 2022 14:34:40 +0100 Subject: [PATCH 1/3] sqlfluff: add changelog to meta --- pkgs/development/tools/database/sqlfluff/default.nix | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/pkgs/development/tools/database/sqlfluff/default.nix b/pkgs/development/tools/database/sqlfluff/default.nix index 7015050e2d6f..aa3c6f9464ef 100644 --- a/pkgs/development/tools/database/sqlfluff/default.nix +++ b/pkgs/development/tools/database/sqlfluff/default.nix @@ -5,13 +5,14 @@ python3.pkgs.buildPythonApplication rec { pname = "sqlfluff"; - version = "1.4.2"; + version = "1.4.3"; + format = "setuptools"; src = fetchFromGitHub { owner = pname; repo = pname; rev = "refs/tags/${version}"; - hash = "sha256-B1tqL8bc+mWEjQrS4lQM55/ahOeUyuE8VBtk6QMj6Mk="; + hash = "sha256-B6bQDB69967PjT0l5+bH9XjjSQ0WMzCZU/ipbDsfbUU="; }; propagatedBuildInputs = with python3.pkgs; [ @@ -43,9 +44,10 @@ python3.pkgs.buildPythonApplication rec { disabledTestPaths = [ # Don't run the plugin related tests - "test/core/plugin_test.py" - "plugins/sqlfluff-templater-dbt" "plugins/sqlfluff-plugin-example/test/rules/rule_test_cases_test.py" + "plugins/sqlfluff-templater-dbt" + "test/core/plugin_test.py" + "test/diff_quality_plugin_test.py" ]; disabledTests = [ @@ -62,6 +64,7 @@ python3.pkgs.buildPythonApplication rec { meta = with lib; { description = "SQL linter and auto-formatter"; homepage = "https://www.sqlfluff.com/"; + changelog = "https://github.com/sqlfluff/sqlfluff/blob/${version}/CHANGELOG.md"; license = with licenses; [ mit ]; maintainers = with maintainers; [ fab ]; }; From c6b869b45b41f2683e282d24a0f6f1cdef9b066d Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Tue, 20 Dec 2022 15:37:15 +0100 Subject: [PATCH 2/3] sqlfluff: 1.4.3 -> 1.4.4 Diff: https://github.com/sqlfluff/sqlfluff/compare/refs/tags/1.4.3...1.4.4 Changelog: https://github.com/sqlfluff/sqlfluff/blob/1.4.4/CHANGELOG.md --- pkgs/development/tools/database/sqlfluff/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/tools/database/sqlfluff/default.nix b/pkgs/development/tools/database/sqlfluff/default.nix index aa3c6f9464ef..b4043c513d5b 100644 --- a/pkgs/development/tools/database/sqlfluff/default.nix +++ b/pkgs/development/tools/database/sqlfluff/default.nix @@ -5,14 +5,14 @@ python3.pkgs.buildPythonApplication rec { pname = "sqlfluff"; - version = "1.4.3"; + version = "1.4.4"; format = "setuptools"; src = fetchFromGitHub { owner = pname; repo = pname; rev = "refs/tags/${version}"; - hash = "sha256-B6bQDB69967PjT0l5+bH9XjjSQ0WMzCZU/ipbDsfbUU="; + hash = "sha256-qB7QReQQRzpOCZFZbgIQ6tQe2FNX6BqXWEA4F+FnKTc="; }; propagatedBuildInputs = with python3.pkgs; [ From 9a3648d6c1ff1ad42af21343327da18a83728b43 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Tue, 20 Dec 2022 16:23:39 +0100 Subject: [PATCH 3/3] sqlfluff: 1.4.4 -> 1.4.5 Diff: https://github.com/sqlfluff/sqlfluff/compare/refs/tags/1.4.4...1.4.5 Changelog: https://github.com/sqlfluff/sqlfluff/blob/1.4.5/CHANGELOG.md --- pkgs/development/tools/database/sqlfluff/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/tools/database/sqlfluff/default.nix b/pkgs/development/tools/database/sqlfluff/default.nix index b4043c513d5b..b93b1ab763cc 100644 --- a/pkgs/development/tools/database/sqlfluff/default.nix +++ b/pkgs/development/tools/database/sqlfluff/default.nix @@ -5,14 +5,14 @@ python3.pkgs.buildPythonApplication rec { pname = "sqlfluff"; - version = "1.4.4"; + version = "1.4.5"; format = "setuptools"; src = fetchFromGitHub { owner = pname; repo = pname; rev = "refs/tags/${version}"; - hash = "sha256-qB7QReQQRzpOCZFZbgIQ6tQe2FNX6BqXWEA4F+FnKTc="; + hash = "sha256-Kc0doBR2iOy54arxOYXH5eHlcM7pXFVUqedopsZH8rE="; }; propagatedBuildInputs = with python3.pkgs; [