Merge pull request #207014 from fabaff/sqlfluff-bump

sqlfluff: 1.4.2 -> 1.4.5
This commit is contained in:
figsoda 2022-12-20 14:50:23 -05:00 committed by GitHub
commit d31b63a67f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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 ];
};