python312Packages.lsassy: format with nixfmt
This commit is contained in:
parent
9d2806509b
commit
3a1b737777
1 changed files with 14 additions and 19 deletions
|
@ -1,13 +1,14 @@
|
|||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchFromGitHub
|
||||
, impacket
|
||||
, netaddr
|
||||
, poetry-core
|
||||
, pypykatz
|
||||
, pythonOlder
|
||||
, pythonRelaxDepsHook
|
||||
, rich
|
||||
{
|
||||
lib,
|
||||
buildPythonPackage,
|
||||
fetchFromGitHub,
|
||||
impacket,
|
||||
netaddr,
|
||||
poetry-core,
|
||||
pypykatz,
|
||||
pythonOlder,
|
||||
pythonRelaxDepsHook,
|
||||
rich,
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
|
@ -30,13 +31,9 @@ buildPythonPackage rec {
|
|||
"rich"
|
||||
];
|
||||
|
||||
nativeBuildInputs = [
|
||||
pythonRelaxDepsHook
|
||||
];
|
||||
nativeBuildInputs = [ pythonRelaxDepsHook ];
|
||||
|
||||
build-system = [
|
||||
poetry-core
|
||||
];
|
||||
build-system = [ poetry-core ];
|
||||
|
||||
dependencies = [
|
||||
impacket
|
||||
|
@ -48,9 +45,7 @@ buildPythonPackage rec {
|
|||
# Tests require an active domain controller
|
||||
doCheck = false;
|
||||
|
||||
pythonImportsCheck = [
|
||||
"lsassy"
|
||||
];
|
||||
pythonImportsCheck = [ "lsassy" ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Python module to extract data from Local Security Authority Subsystem Service (LSASS)";
|
||||
|
|
Loading…
Reference in a new issue