spraycharles: init at 2.0.2

Low and slow password spraying tool

https://github.com/Tw1sm/spraycharles
This commit is contained in:
Fabian Affolter
2025-12-28 22:10:39 +01:00
parent b9ba106358
commit 46982c66a5
+49
View File
@@ -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";
};
}