diff --git a/pkgs/development/python-modules/lsassy/default.nix b/pkgs/development/python-modules/lsassy/default.nix index 9ab583acbeeb..a36a70f11bbd 100644 --- a/pkgs/development/python-modules/lsassy/default.nix +++ b/pkgs/development/python-modules/lsassy/default.nix @@ -1,18 +1,19 @@ -{ lib -, buildPythonPackage -, fetchFromGitHub -, impacket -, netaddr -, poetry-core -, pypykatz -, pythonOlder -, pythonRelaxDepsHook -, rich +{ + lib, + buildPythonPackage, + fetchFromGitHub, + impacket, + netaddr, + poetry-core, + pypykatz, + pythonOlder, + pythonRelaxDepsHook, + rich, }: buildPythonPackage rec { pname = "lsassy"; - version = "3.1.9"; + version = "3.1.10"; pyproject = true; disabled = pythonOlder "3.7"; @@ -21,7 +22,7 @@ buildPythonPackage rec { owner = "Hackndo"; repo = "lsassy"; rev = "refs/tags/v${version}"; - hash = "sha256-VGLSVv/+UpgeSTHoOTjEfQSAYfXA3bAI+yKjcKBI1Z4="; + hash = "sha256-Eqparqj1O0gK0MvR4BBkGVNji2WXEnMsdWvKiR6XHFk="; }; pythonRelaxDeps = [ @@ -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)";