python3Packages.callPackage (#117406)

This commit is contained in:
Fabian Affolter 2021-04-01 20:13:15 +02:00 committed by GitHub
parent 9091767fba
commit e3645c05ed
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 42 additions and 0 deletions

View file

@ -0,0 +1,40 @@
{ lib
, fetchFromGitHub
, python3
}:
python3.pkgs.buildPythonApplication rec {
pname = "knockpy";
version = "5.0.0";
disabled = python3.pythonOlder "3.6";
src = fetchFromGitHub {
owner = "guelfoweb";
repo = "knock";
rev = version;
sha256 = "1h7sibdxx8y53xm1wydyng418n4j6baiys257msq03cs04jlm7h9";
};
propagatedBuildInputs = with python3.pkgs; [
beautifulsoup4
colorama
requests
];
postPatch = ''
# https://github.com/guelfoweb/knock/pull/95
substituteInPlace setup.py \
--replace "bs4" "beautifulsoup4"
'';
# Project has no tests
doCheck = false;
pythonImportsCheck = [ "knockpy" ];
meta = with lib; {
description = "Tool to scan subdomains";
homepage = "https://github.com/guelfoweb/knock";
license = with licenses; [ gpl3Only ];
maintainers = with maintainers; [ fab ];
};
}

View file

@ -5766,6 +5766,8 @@ in
knockknock = callPackage ../tools/security/knockknock { };
knockpy = callPackage ../tools/security/knockpy { };
kore = callPackage ../development/web/kore { };
krakenx = callPackage ../tools/system/krakenx { };