nixpkgs/pkgs/tools/security/knockpy/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

40 lines
725 B
Nix
Raw Normal View History

2021-04-01 19:13:15 +01:00
{ lib
, fetchFromGitHub
, python3
}:
python3.pkgs.buildPythonApplication rec {
pname = "knockpy";
2022-03-04 09:52:32 +00:00
version = "5.3.0";
2021-04-01 19:13:15 +01:00
src = fetchFromGitHub {
owner = "guelfoweb";
repo = "knock";
rev = version;
2022-03-04 09:52:32 +00:00
hash = "sha256-aM78If4/zW/0CqVjZHDbHrrWDuU1VSVhX7dfy9FR098=";
2021-04-01 19:13:15 +01:00
};
propagatedBuildInputs = with python3.pkgs; [
beautifulsoup4
colorama
2021-06-29 22:24:54 +01:00
matplotlib
networkx
pyqt5
2021-04-01 19:13:15 +01:00
requests
];
# Project has no tests
doCheck = false;
2021-06-29 22:24:54 +01:00
2022-01-18 11:33:57 +00:00
pythonImportsCheck = [
"knockpy"
];
2021-04-01 19:13:15 +01:00
meta = with lib; {
description = "Tool to scan subdomains";
homepage = "https://github.com/guelfoweb/knock";
license = with licenses; [ gpl3Only ];
maintainers = with maintainers; [ fab ];
};
}