Merge pull request #218683 from fabaff/octosuite
octosuite: init at 3.1.0
This commit is contained in:
commit
b6a35ec0d9
2 changed files with 46 additions and 0 deletions
44
pkgs/tools/security/octosuite/default.nix
Normal file
44
pkgs/tools/security/octosuite/default.nix
Normal file
|
@ -0,0 +1,44 @@
|
|||
{ lib
|
||||
, python3
|
||||
, fetchFromGitHub
|
||||
}:
|
||||
|
||||
python3.pkgs.buildPythonApplication rec {
|
||||
pname = "octosuite";
|
||||
version = "3.1.0";
|
||||
format = "setuptools";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "bellingcat";
|
||||
repo = "octosuite";
|
||||
rev = "refs/tags/${version}";
|
||||
hash = "sha256-C73txVtyWTcIrJSApBy4uIKDcuUq0HZrGM6dqDVLkKY=";
|
||||
};
|
||||
|
||||
postPatch = ''
|
||||
# pyreadline3 is Windows-only
|
||||
substituteInPlace setup.py \
|
||||
--replace ', "pyreadline3"' ""
|
||||
'';
|
||||
|
||||
propagatedBuildInputs = with python3.pkgs; [
|
||||
psutil
|
||||
requests
|
||||
rich
|
||||
];
|
||||
|
||||
pythonImportsCheck = [
|
||||
"octosuite"
|
||||
];
|
||||
|
||||
# Project has no tests
|
||||
doCheck = false;
|
||||
|
||||
meta = with lib; {
|
||||
description = "Advanced Github OSINT framework";
|
||||
homepage = "https://github.com/bellingcat/octosuite";
|
||||
changelog = "https://github.com/bellingcat/octosuite/releases/tag/${version}";
|
||||
license = licenses.gpl3Only;
|
||||
maintainers = with maintainers; [ fab ];
|
||||
};
|
||||
}
|
|
@ -622,6 +622,8 @@ with pkgs;
|
|||
|
||||
erosmb = callPackage ../tools/security/erosmb { };
|
||||
|
||||
octosuite = callPackage ../tools/security/octosuite { };
|
||||
|
||||
octosql = callPackage ../tools/misc/octosql { };
|
||||
|
||||
onesixtyone = callPackage ../tools/security/onesixtyone {};
|
||||
|
|
Loading…
Reference in a new issue