raccoon-scanner: init at 0.8.5-unstable-2025-06-10 (#477116)

This commit is contained in:
Fabian Affolter
2026-01-06 00:23:10 +00:00
committed by GitHub
@@ -0,0 +1,43 @@
{
lib,
python3,
fetchFromGitHub,
}:
python3.pkgs.buildPythonApplication (finalAttrs: {
pname = "raccoon-scanner";
version = "0.8.5-unstable-2025-06-10";
pyproject = true;
src = fetchFromGitHub {
owner = "evyatarmeged";
repo = "Raccoon";
rev = "44024abaa6ca420b6b2c6f06285df306f360eb22";
hash = "sha256-jcZKjQR92brWcB1+WSKkpoE0V5TLkfDCRu8TQY/hkoc=";
};
build-system = with python3.pkgs; [ setuptools ];
dependencies = with python3.pkgs; [
beautifulsoup4
click
dnspython
fake-useragent
lxml
pysocks
requests
setuptools
xmltodict
];
# Project has no test
doCheck = false;
meta = {
description = "Tool for reconnaissance and vulnerability scanning";
homepage = "https://github.com/evyatarmeged/Raccoon";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ fab ];
mainProgram = "raccoon";
};
})