about summary refs log tree commit diff
path: root/pkgs/development
diff options
context:
space:
mode:
authorYt <raphael@megzari.com>2024-06-26 10:37:17 +0000
committerGitHub <noreply@github.com>2024-06-26 10:37:17 +0000
commit168b1ff7269d25b3a42d95d5c3e4387346a66170 (patch)
tree0c4d3fde9f2d8318990abc0349b389d534e5ab2e /pkgs/development
parentad24b41e4587d76f6af44002ee8b731e75965a85 (diff)
parent7cc1dc108d2c7512c4c9ffae549012c39bd6cafe (diff)
Merge pull request #322583 from GaetanLepage/cleanlab
python311Packages.cleanlab: 2.6.5 -> 2.6.6
Diffstat (limited to 'pkgs/development')
-rw-r--r--pkgs/development/python-modules/cleanlab/default.nix13
1 files changed, 9 insertions, 4 deletions
diff --git a/pkgs/development/python-modules/cleanlab/default.nix b/pkgs/development/python-modules/cleanlab/default.nix
index b7c2070ebcea3..e5f227f7545e1 100644
--- a/pkgs/development/python-modules/cleanlab/default.nix
+++ b/pkgs/development/python-modules/cleanlab/default.nix
@@ -1,14 +1,19 @@
 {
   lib,
   buildPythonPackage,
-  fetchFromGitHub,
   pythonOlder,
+  fetchFromGitHub,
+
+  # build-system
+  setuptools,
+
+  # dependencies
   numpy,
   scikit-learn,
   termcolor,
   tqdm,
   pandas,
-  setuptools,
+
   # test dependencies
   datasets,
   fasttext,
@@ -26,7 +31,7 @@
 
 buildPythonPackage rec {
   pname = "cleanlab";
-  version = "2.6.5";
+  version = "2.6.6";
   pyproject = true;
 
   disabled = pythonOlder "3.8";
@@ -35,7 +40,7 @@ buildPythonPackage rec {
     owner = "cleanlab";
     repo = "cleanlab";
     rev = "refs/tags/v${version}";
-    hash = "sha256-wehvGh27Ey1YK+eWTjT6jRwa7yqPpx3P0HUNePoljpw=";
+    hash = "sha256-08ePFTCRuggr4hTCfr/gbzMhLozz4KCywhPFSKYDNng=";
   };
 
   build-system = [ setuptools ];