mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-27 23:33:30 +00:00
Merge pull request #304838 from r-ryantm/auto-update/python312Packages.lsassy
python312Packages.lsassy: 3.1.9 -> 3.1.10
This commit is contained in:
commit
bafb89ef3d
@ -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)";
|
||||
|
Loading…
Reference in New Issue
Block a user