python3Packages.lsassy: 2.1.5 -> 3.0.0

This commit is contained in:
Fabian Affolter 2021-10-12 20:17:46 +02:00
parent 80d606efb7
commit f3ea5dead1

View file

@ -4,28 +4,33 @@
, impacket , impacket
, netaddr , netaddr
, pypykatz , pypykatz
, rich
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "lsassy"; pname = "lsassy";
version = "2.1.5"; version = "3.0.0";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "Hackndo"; owner = "Hackndo";
repo = pname; repo = pname;
rev = "v${version}"; rev = "v${version}";
sha256 = "15w12asy797dxsz57avbxy6dbi7va9p5jx6i3gm9df9mbj0j3lcc"; sha256 = "sha256-75gs08QGjN5iUT4HQZZTSKi3vzNNKQvZR2JTObYNb7w=";
}; };
propagatedBuildInputs = [ propagatedBuildInputs = [
impacket impacket
netaddr netaddr
pypykatz pypykatz
rich
]; ];
# Tests require an active domain controller # Tests require an active domain controller
doCheck = false; doCheck = false;
pythonImportsCheck = [ "lsassy" ];
pythonImportsCheck = [
"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)";