enum4linux-ng: format with nixfmt

This commit is contained in:
Fabian Affolter 2024-04-12 08:52:40 +02:00
parent c0dcad2a92
commit 8a1afb61b8

View File

@ -1,7 +1,8 @@
{ lib {
, fetchFromGitHub lib,
, python3 fetchFromGitHub,
, samba python3,
samba,
}: }:
python3.pkgs.buildPythonApplication rec { python3.pkgs.buildPythonApplication rec {
@ -16,17 +17,15 @@ python3.pkgs.buildPythonApplication rec {
hash = "sha256-VpNYgdgvsQG5UcxoyyLCj5ijJdIKKhCSqnHTvTgD4lA="; hash = "sha256-VpNYgdgvsQG5UcxoyyLCj5ijJdIKKhCSqnHTvTgD4lA=";
}; };
build-system = with python3.pkgs; [ build-system = with python3.pkgs; [ setuptools ];
setuptools
];
dependencies = [ dependencies =
samba [ samba ]
] ++ (with python3.pkgs; [ ++ (with python3.pkgs; [
impacket impacket
ldap3 ldap3
pyyaml pyyaml
]); ]);
# It's only a script and not a Python module. Project has no tests # It's only a script and not a Python module. Project has no tests
doCheck = false; doCheck = false;