python312Packages.lsassy: format with nixfmt

This commit is contained in:
Fabian Affolter 2024-04-17 20:07:08 +02:00
parent 9d2806509b
commit 3a1b737777

View File

@ -1,13 +1,14 @@
{ lib {
, buildPythonPackage lib,
, fetchFromGitHub buildPythonPackage,
, impacket fetchFromGitHub,
, netaddr impacket,
, poetry-core netaddr,
, pypykatz poetry-core,
, pythonOlder pypykatz,
, pythonRelaxDepsHook pythonOlder,
, rich pythonRelaxDepsHook,
rich,
}: }:
buildPythonPackage rec { buildPythonPackage rec {
@ -30,13 +31,9 @@ buildPythonPackage rec {
"rich" "rich"
]; ];
nativeBuildInputs = [ nativeBuildInputs = [ pythonRelaxDepsHook ];
pythonRelaxDepsHook
];
build-system = [ build-system = [ poetry-core ];
poetry-core
];
dependencies = [ dependencies = [
impacket impacket
@ -48,9 +45,7 @@ buildPythonPackage rec {
# Tests require an active domain controller # Tests require an active domain controller
doCheck = false; doCheck = false;
pythonImportsCheck = [ pythonImportsCheck = [ "lsassy" ];
"lsassy"
];
meta = with lib; { meta = with lib; {
description = "Python module to extract data from Local Security Authority Subsystem Service (LSASS)"; description = "Python module to extract data from Local Security Authority Subsystem Service (LSASS)";