about summary refs log tree commit diff
path: root/pkgs/by-name
diff options
context:
space:
mode:
authorR. Ryantm2024-07-25 14:37:46 +0000
committerPol Dellaiera2024-07-25 16:57:13 +0200
commit7b3ed2ec699331a338699946e89d1638728ef7ad (patch)
treedbb606cb1885037fc0168e8180c05b48692a334b /pkgs/by-name
parentd8a2fa696c4e3549b855bcf0dc0449d658f5dcc2 (diff)
rabbit: 2.0.0 -> 2.1.0
Diffstat (limited to 'pkgs/by-name')
-rw-r--r--pkgs/by-name/ra/rabbit/package.nix10
1 files changed, 6 insertions, 4 deletions
diff --git a/pkgs/by-name/ra/rabbit/package.nix b/pkgs/by-name/ra/rabbit/package.nix
index 2ee17d7818a6..0ae3c134fe9f 100644
--- a/pkgs/by-name/ra/rabbit/package.nix
+++ b/pkgs/by-name/ra/rabbit/package.nix
@@ -5,17 +5,20 @@
 
 python3.pkgs.buildPythonApplication rec {
   pname = "rabbit";
-  version = "2.0.0";
+  version = "2.1.0";
   pyproject = true;
 
   src = fetchFromGitHub {
     owner = "natarajan-chidambaram";
     repo = "RABBIT";
     rev = "refs/tags/${version}";
-    hash = "sha256-cAWLVB7KpLsfXcxAbSXkE3O6N0V1mw3z9UdMeH0IkpI=";
+    hash = "sha256-l5k5wPEd6/x7xHc+GlnoyTry7GRTnzNiTLxrLAZFVzQ=";
   };
 
-  pythonRelaxDeps = true;
+  pythonRelaxDeps = [
+    "numpy"
+    "scipy"
+  ];
 
   build-system = [
     python3.pkgs.setuptools
@@ -25,7 +28,6 @@ python3.pkgs.buildPythonApplication rec {
   dependencies = with python3.pkgs; [
     numpy
     pandas
-    pip
     python-dateutil
     requests
     scikit-learn