mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-27 17:33:09 +00:00
ghunt: init at 2.0.1
Offensive Google framework https://github.com/mxrch/ghunt
This commit is contained in:
parent
c8d03f8a7e
commit
37256bfd6a
50
pkgs/by-name/gh/ghunt/package.nix
Normal file
50
pkgs/by-name/gh/ghunt/package.nix
Normal file
@ -0,0 +1,50 @@
|
||||
{ lib
|
||||
, fetchFromGitHub
|
||||
, python3
|
||||
}:
|
||||
|
||||
python3.pkgs.buildPythonApplication rec {
|
||||
pname = "ghunt";
|
||||
version = "2.0.1";
|
||||
format = "setuptools";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "mxrch";
|
||||
repo = "ghunt";
|
||||
rev = "refs/tags/v${version}";
|
||||
hash = "sha256-7awLKX+1fVbufg3++lUUCZg4p07c2yGeefiPFcE1Ij4=";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = with python3.pkgs; [
|
||||
alive-progress
|
||||
autoslot
|
||||
beautifulsoup4
|
||||
beautifultable
|
||||
geopy
|
||||
httpx
|
||||
humanize
|
||||
imagehash
|
||||
inflection
|
||||
jsonpickle
|
||||
pillow
|
||||
protobuf
|
||||
python-dateutil
|
||||
rich
|
||||
trio
|
||||
];
|
||||
|
||||
# Project has no tests
|
||||
doCheck = false;
|
||||
|
||||
pythonImportsCheck = [
|
||||
"ghunt"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Offensive Google framework";
|
||||
homepage = "https://github.com/mxrch/ghunt";
|
||||
changelog = "https://github.com/mxrch/GHunt/releases/tag/v${version}";
|
||||
license = licenses.agpl3Only;
|
||||
maintainers = with maintainers; [ fab ];
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user