diff --git a/pkgs/by-name/ra/raccoon-scanner/package.nix b/pkgs/by-name/ra/raccoon-scanner/package.nix new file mode 100644 index 000000000000..99045aefac5d --- /dev/null +++ b/pkgs/by-name/ra/raccoon-scanner/package.nix @@ -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"; + }; +})