diff --git a/pkgs/tools/security/enum4linux-ng/default.nix b/pkgs/tools/security/enum4linux-ng/default.nix index c3c267b69fdd..956e71fed923 100644 --- a/pkgs/tools/security/enum4linux-ng/default.nix +++ b/pkgs/tools/security/enum4linux-ng/default.nix @@ -1,7 +1,8 @@ -{ lib -, fetchFromGitHub -, python3 -, samba +{ + lib, + fetchFromGitHub, + python3, + samba, }: python3.pkgs.buildPythonApplication rec { @@ -16,17 +17,15 @@ python3.pkgs.buildPythonApplication rec { hash = "sha256-VpNYgdgvsQG5UcxoyyLCj5ijJdIKKhCSqnHTvTgD4lA="; }; - build-system = with python3.pkgs; [ - setuptools - ]; + build-system = with python3.pkgs; [ setuptools ]; - dependencies = [ - samba - ] ++ (with python3.pkgs; [ - impacket - ldap3 - pyyaml - ]); + dependencies = + [ samba ] + ++ (with python3.pkgs; [ + impacket + ldap3 + pyyaml + ]); # It's only a script and not a Python module. Project has no tests doCheck = false;