spearspray: init at 2.0.0-unstable-2025-08-25 (#474881)

This commit is contained in:
Fabian Affolter
2025-12-29 08:23:14 +00:00
committed by GitHub
+45
View File
@@ -0,0 +1,45 @@
{
lib,
python3,
fetchFromGitHub,
}:
python3.pkgs.buildPythonApplication {
pname = "spearspray";
version = "2.0.0-unstable-2025-08-25";
pyproject = true;
src = fetchFromGitHub {
owner = "sikumy";
repo = "spearspray";
rev = "bccb64fb672e503d2c8bf8997feb46b5ed60f3d1";
hash = "sha256-6CSVWUOdpv7GyD8qoTbQAqqf6GHitifsV0n5GOuFawU=";
};
pythonRelaxDeps = [ "neo4j" ];
build-system = with python3.pkgs; [ poetry-core ];
dependencies = with python3.pkgs; [
argcomplete
colorama
gssapi
ldap3
neo4j
questionary
unidecode
];
pythonImportsCheck = [ "spearspray" ];
# Project has no tests
doCheck = false;
meta = {
description = "Tool for doing Password Spraying with User Intelligence";
homepage = "https://github.com/sikumy/spearspray";
license = lib.licenses.gpl3Only;
maintainers = with lib.maintainers; [ fab ];
mainProgram = "spearspray";
};
}