lol

knowsmore: format with nixfmt

+10 -21
+10 -21
pkgs/tools/security/knowsmore/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 "urllib3" 21 22 ]; 22 23 23 - pythonRemoveDeps = [ 24 - "bs4" 25 - ]; 24 + pythonRemoveDeps = [ "bs4" ]; 26 25 27 - build-system = with python3.pkgs; [ 28 - setuptools 29 - ]; 26 + build-system = with python3.pkgs; [ setuptools ]; 30 27 31 - nativeBuildInputs = with python3.pkgs; [ 32 - pythonRelaxDepsHook 33 - ]; 28 + nativeBuildInputs = with python3.pkgs; [ pythonRelaxDepsHook ]; 34 29 35 30 dependencies = with python3.pkgs; [ 36 31 aioconsole ··· 50 45 xmltodict 51 46 ]; 52 47 53 - nativeCheckInputs = with python3.pkgs; [ 54 - pytestCheckHook 55 - ]; 48 + nativeCheckInputs = with python3.pkgs; [ pytestCheckHook ]; 56 49 57 - pythonImportsCheck = [ 58 - "knowsmore" 59 - ]; 50 + pythonImportsCheck = [ "knowsmore" ]; 60 51 61 - pytestFlagsArray = [ 62 - "tests/tests*" 63 - ]; 52 + pytestFlagsArray = [ "tests/tests*" ]; 64 53 65 54 meta = with lib; { 66 55 description = "Tool for pentesting Microsoft Active Directory";