mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
ff1a94e523
The nixpkgs-unstable channel's programs.sqlite was used to identify packages producing exactly one binary, and these automatically added to their package definitions wherever possible.
45 lines
969 B
Nix
45 lines
969 B
Nix
{ 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";
|
|
mainProgram = "octosuite";
|
|
homepage = "https://github.com/bellingcat/octosuite";
|
|
changelog = "https://github.com/bellingcat/octosuite/releases/tag/${version}";
|
|
license = licenses.gpl3Only;
|
|
maintainers = with maintainers; [ fab ];
|
|
};
|
|
}
|