sqlfluff: init at 0.6.0a2
This commit is contained in:
parent
deaa70e29e
commit
27ecd47c5b
65
pkgs/development/tools/database/sqlfluff/default.nix
Normal file
65
pkgs/development/tools/database/sqlfluff/default.nix
Normal file
@ -0,0 +1,65 @@
|
||||
{ lib
|
||||
, fetchFromGitHub
|
||||
, python3
|
||||
}:
|
||||
|
||||
python3.pkgs.buildPythonApplication rec {
|
||||
pname = "sqlfluff";
|
||||
version = "0.6.0a2";
|
||||
disabled = python3.pythonOlder "3.6";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = pname;
|
||||
repo = pname;
|
||||
rev = version;
|
||||
sha256 = "13hzr0jialzi2nlvqwvff3w0h6jikqvcg0p2p4irwlisg4db8w7w";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = with python3.pkgs; [
|
||||
appdirs
|
||||
cached-property
|
||||
click
|
||||
colorama
|
||||
configparser
|
||||
diff_cover
|
||||
jinja2
|
||||
oyaml
|
||||
pathspec
|
||||
pytest
|
||||
tblib
|
||||
toml
|
||||
] ++ lib.optionals (pythonOlder "3.7") [
|
||||
dataclasses
|
||||
] ++ lib.optionals (pythonOlder "3.9") [
|
||||
typing-extensions
|
||||
];
|
||||
|
||||
checkInputs = with python3.pkgs; [
|
||||
hypothesis
|
||||
pytestCheckHook
|
||||
];
|
||||
|
||||
disabledTestPaths = [
|
||||
# dbt is not available yet
|
||||
"test/core/templaters/dbt_test.py"
|
||||
# Don't run the plugin related tests
|
||||
"test/core/plugin_test.py"
|
||||
"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 ];
|
||||
};
|
||||
}
|
@ -11880,6 +11880,8 @@ in
|
||||
jdk = oraclejdk;
|
||||
};
|
||||
|
||||
sqlfluff = callPackage ../development/tools/database/sqlfluff { };
|
||||
|
||||
sqlx-cli = callPackage ../development/tools/rust/sqlx-cli {
|
||||
inherit (darwin.apple_sdk.frameworks) SystemConfiguration CoreFoundation Security;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user