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