From 8a1afb61b8e77b670820d57db3146e55c95ff160 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Fri, 12 Apr 2024 08:52:40 +0200 Subject: [PATCH] enum4linux-ng: format with nixfmt --- pkgs/tools/security/enum4linux-ng/default.nix | 27 +++++++++---------- 1 file changed, 13 insertions(+), 14 deletions(-) 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;