lol

sigma-cli: format with nixfmt

+7 -12
+7 -12
pkgs/tools/security/sigma-cli/default.nix
··· 1 - { lib 2 - , fetchFromGitHub 3 - , python3 1 + { 2 + lib, 3 + fetchFromGitHub, 4 + python3, 4 5 }: 5 6 6 7 python3.pkgs.buildPythonApplication rec { ··· 20 21 --replace '= "^' '= ">=' 21 22 ''; 22 23 23 - build-system = with python3.pkgs; [ 24 - poetry-core 25 - ]; 24 + build-system = with python3.pkgs; [ poetry-core ]; 26 25 27 26 dependencies = with python3.pkgs; [ 28 27 click ··· 39 38 pysigma-pipeline-windows 40 39 ]; 41 40 42 - nativeCheckInputs = with python3.pkgs; [ 43 - pytestCheckHook 44 - ]; 41 + nativeCheckInputs = with python3.pkgs; [ pytestCheckHook ]; 45 42 46 43 disabledTests = [ 47 44 "test_plugin_list" ··· 61 58 "test_check_exclude" 62 59 ]; 63 60 64 - pythonImportsCheck = [ 65 - "sigma.cli" 66 - ]; 61 + pythonImportsCheck = [ "sigma.cli" ]; 67 62 68 63 meta = with lib; { 69 64 description = "Sigma command line interface";