lol

quark-engine: format with nixfmt

+9 -16
+9 -16
pkgs/tools/security/quark-engine/default.nix
··· 1 - { lib 2 - , fetchFromGitHub 3 - , gitMinimal 4 - , python3 1 + { 2 + lib, 3 + fetchFromGitHub, 4 + gitMinimal, 5 + python3, 5 6 }: 6 7 7 8 python3.pkgs.buildPythonApplication rec { ··· 16 17 hash = "sha256-W1UeTiyyYZzxu3XQ/6VkTvEyqPWl1Du6QutuoPhaSfs="; 17 18 }; 18 19 19 - build-system = with python3.pkgs; [ 20 - setuptools 21 - ]; 20 + build-system = with python3.pkgs; [ setuptools ]; 22 21 23 - nativeBuildInputs = with python3.pkgs; [ 24 - pythonRelaxDepsHook 25 - ]; 22 + nativeBuildInputs = with python3.pkgs; [ pythonRelaxDepsHook ]; 26 23 27 24 dependencies = with python3.pkgs; [ 28 25 androguard ··· 40 37 tqdm 41 38 ]; 42 39 43 - pythonRelaxDeps = [ 44 - "r2pipe" 45 - ]; 40 + pythonRelaxDeps = [ "r2pipe" ]; 46 41 47 42 # Project has no tests 48 43 doCheck = false; 49 44 50 - pythonImportsCheck = [ 51 - "quark" 52 - ]; 45 + pythonImportsCheck = [ "quark" ]; 53 46 54 47 meta = with lib; { 55 48 description = "Android malware (analysis and scoring) system";