Commit 998dac69 authored by octodi's avatar octodi Committed by Fabian Affolter
Browse files

altdns: init at unstable-2021-09-09



Update package.nix

Co-Authored-By: default avatarFabian Affolter <mail@fabian-affolter.ch>
Co-Authored-By: default avatarArthur <150680976+arthsmn@users.noreply.github.com>
parent 165090ed
Loading
Loading
Loading
Loading
+53 −0
Original line number Diff line number Diff line
{ lib
, python3
, fetchFromGitHub
}:

python3.pkgs.buildPythonApplication {
  pname = "altdns";
  version = "unstable-2021-09-09";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "infosec-au";
    repo = "altdns";
    rev = "8c1de0fa8365153832bb58d74475caa15d2d077a";
    hash = "sha256-ElY6AZ7IBnOh7sRWNSQNmq7AYGlnjvYRn8/U+29BwWA=";
  };

  nativeBuildInputs = with python3.pkgs; [
    setuptools
  ];

  propagatedBuildInputs = with python3.pkgs; [
    dnspython
    termcolor
    tldextract
  ];

  prePatch = ''
  substituteInPlace requirements.txt \
    --replace "argparse" ""
  substituteInPlace setup.py \
    --replace "argparse" ""
  '';

  postInstall = ''
    cp $src/words.txt $out/
  '';

  # Project has no tests
  doCheck = false;

  pythonImportsCheck = [
    "altdns"
  ];

  meta = with lib; {
    description = "Generates permutations, alterations and mutations of subdomains and then resolves them";
    homepage = "https://github.com/infosec-au/altdns";
    license = licenses.asl20;
    maintainers = with maintainers; [ octodi ];
    mainProgram = "altdns";
  };
}