aiodnsbrute: init at 0.3.2

This commit is contained in:
Fabian Affolter 2020-12-29 22:43:01 +01:00
parent ad13f0e569
commit 166bd46415
2 changed files with 47 additions and 0 deletions

View file

@ -0,0 +1,45 @@
{ lib
, buildPythonApplication
, fetchFromGitHub
, aiodns
, click
, tqdm
, uvloop
}:
buildPythonApplication rec {
pname = "aiodnsbrute";
version = "0.3.2";
src = fetchFromGitHub {
owner = "blark";
repo = pname;
rev = "v${version}";
sha256 = "0fs8544kx7vwvc97zpg4rs3lmvnb4vwika5g952rv3bfx4rv3bpg";
};
# https://github.com/blark/aiodnsbrute/pull/8
prePatch = ''
substituteInPlace setup.py --replace " 'asyncio', " ""
'';
propagatedBuildInputs = [
aiodns
click
tqdm
uvloop
];
# no tests present
doCheck = false;
pythonImportsCheck = [ "aiodnsbrute.cli" ];
meta = with lib; {
description = "DNS brute force utility";
homepage = "https://github.com/blark/aiodnsbrute";
# https://github.com/blark/aiodnsbrute/issues/5
license = with licenses; [ gpl3Only ];
maintainers = with maintainers; [ fab ];
};
}

View file

@ -685,6 +685,8 @@ in
aide = callPackage ../tools/security/aide { };
aiodnsbrute = python3Packages.callPackage ../tools/security/aiodnsbrute { };
aircrack-ng = callPackage ../tools/networking/aircrack-ng { };
airfield = callPackage ../tools/networking/airfield { };