Merge pull request #297118 from fabaff/sqlfluff-bump

sqlfluff: 2.3.5 -> 3.0.2

authored by Fabian Affolter and committed by GitHub bea39bb0 f43a5991

+10 -6
+10 -6
pkgs/development/tools/database/sqlfluff/default.nix
··· 5 5 6 6 python3.pkgs.buildPythonApplication rec { 7 7 pname = "sqlfluff"; 8 - version = "2.3.5"; 9 - format = "setuptools"; 8 + version = "3.0.2"; 9 + pyproject = true; 10 10 11 11 src = fetchFromGitHub { 12 - owner = pname; 13 - repo = pname; 12 + owner = "sqlfluff"; 13 + repo = "sqlfluff"; 14 14 rev = "refs/tags/${version}"; 15 - hash = "sha256-l9py+qMI8t5L+FcUmJYXwemjUy/pcugbvhdW3oUOZMo="; 15 + hash = "sha256-GJpSBDxgI0UpIIVeF9dl9XzKJ2TuwWf/IOCzoTGJNRQ="; 16 16 }; 17 + 18 + nativeBuildInputs = with python3.pkgs; [ 19 + setuptools 20 + ]; 17 21 18 22 propagatedBuildInputs = with python3.pkgs; [ 19 23 appdirs ··· 63 67 64 68 meta = with lib; { 65 69 description = "SQL linter and auto-formatter"; 66 - mainProgram = "sqlfluff"; 67 70 homepage = "https://www.sqlfluff.com/"; 68 71 changelog = "https://github.com/sqlfluff/sqlfluff/blob/${version}/CHANGELOG.md"; 69 72 license = with licenses; [ mit ]; 70 73 maintainers = with maintainers; [ fab ]; 74 + mainProgram = "sqlfluff"; 71 75 }; 72 76 }