48 lines
927 B
Nix
48 lines
927 B
Nix
{
|
|
lib,
|
|
python3,
|
|
fetchFromGitHub,
|
|
}:
|
|
|
|
python3.pkgs.buildPythonApplication rec {
|
|
pname = "rabbit";
|
|
version = "2.3.1";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "natarajan-chidambaram";
|
|
repo = "RABBIT";
|
|
rev = "refs/tags/${version}";
|
|
hash = "sha256-QmP6yfVnlYoNVa4EUtKR9xbCnQW2V6deV0+hN9IGtic=";
|
|
};
|
|
|
|
pythonRelaxDeps = [
|
|
"numpy"
|
|
];
|
|
|
|
build-system = with python3.pkgs; [
|
|
setuptools
|
|
];
|
|
|
|
dependencies = with python3.pkgs; [
|
|
joblib
|
|
numpy
|
|
pandas
|
|
python-dateutil
|
|
requests
|
|
scikit-learn
|
|
scipy
|
|
tqdm
|
|
urllib3
|
|
];
|
|
|
|
pythonImportsCheck = [ "rabbit" ];
|
|
|
|
meta = {
|
|
description = "Tool for identifying bot accounts based on their recent GitHub event history";
|
|
homepage = "https://github.com/natarajan-chidambaram/RABBIT";
|
|
license = lib.licenses.asl20;
|
|
mainProgram = "rabbit";
|
|
maintainers = with lib.maintainers; [ drupol ];
|
|
};
|
|
}
|