Merge pull request #304838 from r-ryantm/auto-update/python312Packages.lsassy

python312Packages.lsassy: 3.1.9 -> 3.1.10
This commit is contained in:
Fabian Affolter 2024-04-18 09:04:59 +02:00 committed by GitHub
commit bafb89ef3d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 16 additions and 21 deletions

View File

@ -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)";