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

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

42 lines
843 B
Nix
Raw Normal View History

2021-04-01 18:13:15 +00:00
{ lib
, fetchFromGitHub
, python3
}:
python3.pkgs.buildPythonApplication rec {
pname = "knockpy";
version = "6.1.0";
format = "setuptools";
2021-04-01 18:13:15 +00:00
src = fetchFromGitHub {
owner = "guelfoweb";
repo = "knock";
2023-01-09 20:12:23 +00:00
rev = "refs/tags/${version}";
hash = "sha256-O4tXq4pDzuTBEGAls2I9bfBRdHssF4rFBec4OtfUx6A=";
2021-04-01 18:13:15 +00:00
};
propagatedBuildInputs = with python3.pkgs; [
beautifulsoup4
colorama
2021-06-29 21:24:54 +00:00
matplotlib
networkx
pyqt5
2021-04-01 18:13:15 +00:00
requests
];
# Project has no tests
doCheck = false;
2021-06-29 21:24:54 +00:00
2022-01-18 11:33:57 +00:00
pythonImportsCheck = [
"knockpy"
];
2021-04-01 18:13:15 +00:00
meta = with lib; {
description = "Tool to scan subdomains";
homepage = "https://github.com/guelfoweb/knock";
2023-01-09 20:34:28 +00:00
changelog = "https://github.com/guelfoweb/knock/releases/tag/${version}";
2021-04-01 18:13:15 +00:00
license = with licenses; [ gpl3Only ];
maintainers = with maintainers; [ fab ];
};
}