sqlfluff: 0.6.1 -> 0.6.2

This commit is contained in:
Fabian Affolter 2021-08-11 21:20:26 +02:00
parent 62ca1cc769
commit d2a64c0112

View File

@ -5,14 +5,14 @@
python3.pkgs.buildPythonApplication rec { python3.pkgs.buildPythonApplication rec {
pname = "sqlfluff"; pname = "sqlfluff";
version = "0.6.1"; version = "0.6.2";
disabled = python3.pythonOlder "3.6"; disabled = python3.pythonOlder "3.6";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = pname; owner = pname;
repo = pname; repo = pname;
rev = version; rev = version;
sha256 = "0p5vjpfmy52hbq6mz8svvxrg9757cvgj0cbvaa0340309953ilvj"; sha256 = "sha256-N1ZIm5LsKXXu3CyqFJZd7biaIhVW1EMBLKajgSAwc0g=";
}; };
propagatedBuildInputs = with python3.pkgs; [ propagatedBuildInputs = with python3.pkgs; [
@ -28,10 +28,9 @@ python3.pkgs.buildPythonApplication rec {
pytest pytest
tblib tblib
toml toml
typing-extensions
] ++ lib.optionals (pythonOlder "3.7") [ ] ++ lib.optionals (pythonOlder "3.7") [
dataclasses dataclasses
] ++ lib.optionals (pythonOlder "3.9") [
typing-extensions
]; ];
checkInputs = with python3.pkgs; [ checkInputs = with python3.pkgs; [