Unverified Commit a4aa9851 authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

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

parents 0969ddbb 209a4006
Loading
Loading
Loading
Loading
+43 −0
Original line number Diff line number Diff line
{
  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";
  };
})