65 lines
1.3 KiB
Nix
65 lines
1.3 KiB
Nix
{ lib
|
|
, fetchFromGitHub
|
|
, python3
|
|
}:
|
|
|
|
python3.pkgs.buildPythonApplication rec {
|
|
pname = "sqlfluff";
|
|
version = "0.8.2";
|
|
disabled = python3.pythonOlder "3.6";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = pname;
|
|
repo = pname;
|
|
rev = version;
|
|
sha256 = "sha256-0FlXHUjoeZ7XfmOSlY30b13i2t/4vyWwhDKXquXKaJE=";
|
|
};
|
|
|
|
propagatedBuildInputs = with python3.pkgs; [
|
|
appdirs
|
|
cached-property
|
|
click
|
|
colorama
|
|
configparser
|
|
diff-cover
|
|
jinja2
|
|
oyaml
|
|
pathspec
|
|
pytest
|
|
tblib
|
|
toml
|
|
tqdm
|
|
typing-extensions
|
|
] ++ lib.optionals (pythonOlder "3.7") [
|
|
dataclasses
|
|
];
|
|
|
|
checkInputs = with python3.pkgs; [
|
|
hypothesis
|
|
pytestCheckHook
|
|
];
|
|
|
|
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"
|
|
];
|
|
|
|
disabledTests = [
|
|
# dbt is not available yet
|
|
"test__linter__skip_dbt_model_disabled"
|
|
"test_rules__test_helper_has_variable_introspection"
|
|
"test__rules__std_file_dbt"
|
|
];
|
|
|
|
pythonImportsCheck = [ "sqlfluff" ];
|
|
|
|
meta = with lib; {
|
|
description = "SQL linter and auto-formatter";
|
|
homepage = "https://www.sqlfluff.com/";
|
|
license = with licenses; [ mit ];
|
|
maintainers = with maintainers; [ fab ];
|
|
};
|
|
}
|