spraycharles: init at 2.0.2
Low and slow password spraying tool https://github.com/Tw1sm/spraycharles
This commit is contained in:
@@ -0,0 +1,49 @@
|
||||
{
|
||||
lib,
|
||||
python3,
|
||||
fetchFromGitHub,
|
||||
}:
|
||||
|
||||
python3.pkgs.buildPythonApplication rec {
|
||||
pname = "spraycharles";
|
||||
version = "2.0.2";
|
||||
pyproject = true;
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "Tw1sm";
|
||||
repo = "spraycharles";
|
||||
tag = "v${version}";
|
||||
hash = "sha256-HQ57+LBBlpjPnmgbh4+esRoIgTSE7+4JYRwHE8CTb1c=";
|
||||
};
|
||||
|
||||
pythonRelaxDeps = true;
|
||||
|
||||
build-system = with python3.pkgs; [ poetry-core ];
|
||||
|
||||
dependencies = with python3.pkgs; [
|
||||
discord-webhook
|
||||
impacket
|
||||
numpy
|
||||
pymsteams
|
||||
pyyaml
|
||||
requests
|
||||
requests-ntlm
|
||||
rich
|
||||
typer
|
||||
typer-config
|
||||
];
|
||||
|
||||
pythonImportsCheck = [ "spraycharles" ];
|
||||
|
||||
# Project has no tests
|
||||
doCheck = false;
|
||||
|
||||
meta = {
|
||||
description = "Low and slow password spraying tool";
|
||||
homepage = "https://github.com/Tw1sm/spraycharles";
|
||||
changelog = "https://github.com/Tw1sm/spraycharles/blob/${src.tag}/CHANGELOG.md";
|
||||
license = lib.licenses.bsd3;
|
||||
maintainers = with lib.maintainers; [ fab ];
|
||||
mainProgram = "spraycharles";
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user