rabbit: 2.1.0 -> 2.2.0

Diff: https://github.com/natarajan-chidambaram/RABBIT/compare/refs/tags/2.1.0...2.2.0
This commit is contained in:
Pol Dellaiera 2024-08-28 23:09:53 +02:00
parent 8cf91e2c5b
commit 3bdb21ef9a
No known key found for this signature in database
GPG Key ID: D476DFE9C67467CA

View File

@ -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" ];