depot/third_party/nixpkgs/pkgs/tools/security/aiodnsbrute/default.nix
Default email dae973cb59 Project import generated by Copybara.
GitOrigin-RevId: c90c4025bb6e0c4eaf438128a3b2640314b1c58d
2023-03-08 18:32:21 +02:00

39 lines
809 B
Nix

{ lib
, fetchFromGitHub
, python3
}:
python3.pkgs.buildPythonApplication rec {
pname = "aiodnsbrute";
version = "0.3.3";
format = "setuptools";
src = fetchFromGitHub {
owner = "blark";
repo = pname;
rev = "refs/tags/v${version}";
hash = "sha256-cEpk71VoQJZfKeAZummkk7yjtXKSMndgo0VleYiMlWE=";
};
propagatedBuildInputs = with python3.pkgs; [
aiodns
click
tqdm
uvloop
];
# Project no tests
doCheck = false;
pythonImportsCheck = [
"aiodnsbrute.cli"
];
meta = with lib; {
description = "DNS brute force utility";
homepage = "https://github.com/blark/aiodnsbrute";
changelog = "https://github.com/blark/aiodnsbrute/releases/tag/v${version}";
license = with licenses; [ gpl3Only ];
maintainers = with maintainers; [ fab ];
};
}