From 3bdb21ef9a7c1e816b06acfa5b1c0fc242ea7e8b Mon Sep 17 00:00:00 2001 From: Pol Dellaiera Date: Wed, 28 Aug 2024 23:09:53 +0200 Subject: [PATCH] rabbit: 2.1.0 -> 2.2.0 Diff: https://github.com/natarajan-chidambaram/RABBIT/compare/refs/tags/2.1.0...2.2.0 --- pkgs/by-name/ra/rabbit/package.nix | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/ra/rabbit/package.nix b/pkgs/by-name/ra/rabbit/package.nix index 0ae3c134fe9f..7806d49558c8 100644 --- a/pkgs/by-name/ra/rabbit/package.nix +++ b/pkgs/by-name/ra/rabbit/package.nix @@ -5,19 +5,21 @@ python3.pkgs.buildPythonApplication rec { pname = "rabbit"; - version = "2.1.0"; + version = "2.2.0"; pyproject = true; src = fetchFromGitHub { owner = "natarajan-chidambaram"; repo = "RABBIT"; rev = "refs/tags/${version}"; - hash = "sha256-l5k5wPEd6/x7xHc+GlnoyTry7GRTnzNiTLxrLAZFVzQ="; + hash = "sha256-diy94QhgLHLvkb1kKhGDxiHAyQ43BNJUXjHFYahEDpw="; }; pythonRelaxDeps = [ "numpy" + "scikit-learn" "scipy" + "tqdm" ]; build-system = [ @@ -26,6 +28,7 @@ python3.pkgs.buildPythonApplication rec { ]; dependencies = with python3.pkgs; [ + joblib numpy pandas python-dateutil @@ -34,7 +37,6 @@ python3.pkgs.buildPythonApplication rec { scipy tqdm urllib3 - xgboost ]; pythonImportsCheck = [ "rabbit" ];