We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d8a2fa6 commit 7b3ed2eCopy full SHA for 7b3ed2e
pkgs/by-name/ra/rabbit/package.nix
@@ -5,17 +5,20 @@
5
6
python3.pkgs.buildPythonApplication rec {
7
pname = "rabbit";
8
- version = "2.0.0";
+ version = "2.1.0";
9
pyproject = true;
10
11
src = fetchFromGitHub {
12
owner = "natarajan-chidambaram";
13
repo = "RABBIT";
14
rev = "refs/tags/${version}";
15
- hash = "sha256-cAWLVB7KpLsfXcxAbSXkE3O6N0V1mw3z9UdMeH0IkpI=";
+ hash = "sha256-l5k5wPEd6/x7xHc+GlnoyTry7GRTnzNiTLxrLAZFVzQ=";
16
};
17
18
- pythonRelaxDeps = true;
+ pythonRelaxDeps = [
19
+ "numpy"
20
+ "scipy"
21
+ ];
22
23
build-system = [
24
python3.pkgs.setuptools
@@ -25,7 +28,6 @@ python3.pkgs.buildPythonApplication rec {
25
28
dependencies = with python3.pkgs; [
26
29
numpy
27
30
pandas
- pip
31
python-dateutil
32
requests
33
scikit-learn
0 commit comments