nixpkgs/pkgs/by-name/ra/rabbit/package.nix
2024-04-01 02:26:31 +00:00

47 lines
942 B
Nix

{ lib
, python3
, fetchFromGitHub
}:
python3.pkgs.buildPythonApplication rec {
pname = "rabbit";
version = "1.0.1";
pyproject = true;
src = fetchFromGitHub {
owner = "natarajan-chidambaram";
repo = "RABBIT";
rev = "refs/tags/${version}";
hash = "sha256-E4eUnkKn73MqBFHACdRVFjyUbee+ZJvhP+UYnvHTGdc=";
};
pythonRelaxDeps = true;
build-system = [
python3.pkgs.setuptools
python3.pkgs.wheel
python3.pkgs.pythonRelaxDepsHook
];
dependencies = with python3.pkgs; [
numpy
pandas
pip
requests
scikit-learn
scipy
tqdm
xgboost
];
pythonImportsCheck = [ "rabbit" ];
meta = {
description = "A 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 ];
};
}