python312Packages.cleanlab: 2.7.0 -> 2.7.1 (#385579)

authored by Yt and committed by GitHub 873ad916 d470c503

+2 -13
+2 -13
pkgs/development/python-modules/cleanlab/default.nix
··· 2 2 lib, 3 3 buildPythonPackage, 4 4 fetchFromGitHub, 5 - fetchpatch, 6 5 7 6 # build-system 8 7 setuptools, ··· 33 32 34 33 buildPythonPackage rec { 35 34 pname = "cleanlab"; 36 - version = "2.7.0"; 35 + version = "2.7.1"; 37 36 pyproject = true; 38 37 39 38 src = fetchFromGitHub { 40 39 owner = "cleanlab"; 41 40 repo = "cleanlab"; 42 41 tag = "v${version}"; 43 - hash = "sha256-0kCEIHNOXIkdwDH5zCVWnR/W79ppc/1PFsJ/a4goGzk="; 42 + hash = "sha256-KzVqBOLTxxkgvoGPYMeYb7zMuG8VwQwX6SYR/FUhfBw="; 44 43 }; 45 - 46 - patches = [ 47 - # https://github.com/cleanlab/cleanlab/pull/1224 (merged) 48 - # TODO: remove this patch when updating to the next release (2.8.0) 49 - (fetchpatch { 50 - name = "numpy2-compatibility"; 51 - url = "https://github.com/cleanlab/cleanlab/commit/bed10f5bdf538358e760ad98a0965f9b447b45ad.patch"; 52 - hash = "sha256-czSK05wrLfSpJF2j+YwcDeDIKspkcCEB2hKlX5H3Gns="; 53 - }) 54 - ]; 55 44 56 45 build-system = [ setuptools ]; 57 46