about summary refs log tree commit diff
path: root/pkgs/by-name/ra/rabbit/package.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/by-name/ra/rabbit/package.nix')
-rw-r--r--pkgs/by-name/ra/rabbit/package.nix14
1 files changed, 9 insertions, 5 deletions
diff --git a/pkgs/by-name/ra/rabbit/package.nix b/pkgs/by-name/ra/rabbit/package.nix
index 2ee17d7818a6b..7806d49558c83 100644
--- a/pkgs/by-name/ra/rabbit/package.nix
+++ b/pkgs/by-name/ra/rabbit/package.nix
@@ -5,17 +5,22 @@
 
 python3.pkgs.buildPythonApplication rec {
   pname = "rabbit";
-  version = "2.0.0";
+  version = "2.2.0";
   pyproject = true;
 
   src = fetchFromGitHub {
     owner = "natarajan-chidambaram";
     repo = "RABBIT";
     rev = "refs/tags/${version}";
-    hash = "sha256-cAWLVB7KpLsfXcxAbSXkE3O6N0V1mw3z9UdMeH0IkpI=";
+    hash = "sha256-diy94QhgLHLvkb1kKhGDxiHAyQ43BNJUXjHFYahEDpw=";
   };
 
-  pythonRelaxDeps = true;
+  pythonRelaxDeps = [
+    "numpy"
+    "scikit-learn"
+    "scipy"
+    "tqdm"
+  ];
 
   build-system = [
     python3.pkgs.setuptools
@@ -23,16 +28,15 @@ python3.pkgs.buildPythonApplication rec {
   ];
 
   dependencies = with python3.pkgs; [
+    joblib
     numpy
     pandas
-    pip
     python-dateutil
     requests
     scikit-learn
     scipy
     tqdm
     urllib3
-    xgboost
   ];
 
   pythonImportsCheck = [ "rabbit" ];