diff --git a/pkgs/development/tools/database/sqlfluff/default.nix b/pkgs/development/tools/database/sqlfluff/default.nix index 7015050e2d6f..b93b1ab763cc 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.5"; + format = "setuptools"; src = fetchFromGitHub { owner = pname; repo = pname; rev = "refs/tags/${version}"; - hash = "sha256-B1tqL8bc+mWEjQrS4lQM55/ahOeUyuE8VBtk6QMj6Mk="; + hash = "sha256-Kc0doBR2iOy54arxOYXH5eHlcM7pXFVUqedopsZH8rE="; }; 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 ]; };