python310Packages.imbalanced-learn 0 -> 1 attrpath: python310Packages.imbalanced-learn Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/x8029skyh97jcrqlrvnv8rqfcic66mm7-packages.json.drv building '/nix/store/x8029skyh97jcrqlrvnv8rqfcic66mm7-packages.json.drv'... Going to be running update for following packages: - python3.10-imbalanced-learn-0.9.1 Press Enter key to continue... Running update for: - python3.10-imbalanced-learn-0.9.1: UPDATING ... - python3.10-imbalanced-learn-0.9.1: DONE. Packages updated! [quotedUrls] [quotedUrls] nothing found to replace Diff after rewrites: diff --git a/pkgs/development/python-modules/imbalanced-learn/default.nix b/pkgs/development/python-modules/imbalanced-learn/default.nix index 8a53e856b33..f43908a61e0 100644 --- a/pkgs/development/python-modules/imbalanced-learn/default.nix +++ b/pkgs/development/python-modules/imbalanced-learn/default.nix @@ -9,12 +9,12 @@ buildPythonPackage rec { pname = "imbalanced-learn"; - version = "0.9.1"; + version = "0.10.1"; disabled = isPy27; # scikit-learn>=0.21 doesn't work on python2 src = fetchPypi { inherit pname version; - sha256 = "sha256-ThT3rmB4tauEO3PDebKsULIHRGQV2cJDjIhdbLWv2WI="; + sha256 = "sha256-vHYJYZ7Dw4xEIpKSgjmtPRC13rCviinIOCK3tXsxn4s="; }; propagatedBuildInputs = [ scikit-learn ]; An auto update branch exists with message `python310Packages.imbalanced-learn: 0.9.1 -> 0.10.0`. New version is 0.10.1. The auto update branch does not match or exceed the new version. Old version 0.9.1" not present in staging derivation file with contents: { lib , buildPythonPackage , fetchPypi , isPy27 , pandas , pytestCheckHook , scikit-learn }: buildPythonPackage rec { pname = "imbalanced-learn"; version = "0.10.1"; disabled = isPy27; # scikit-learn>=0.21 doesn't work on python2 src = fetchPypi { inherit pname version; sha256 = "sha256-vHYJYZ7Dw4xEIpKSgjmtPRC13rCviinIOCK3tXsxn4s="; }; propagatedBuildInputs = [ scikit-learn ]; checkInputs = [ pytestCheckHook pandas ]; preCheck = '' export HOME=$TMPDIR ''; disabledTests = [ "estimator" "classification" "_generator" "show_versions" "test_make_imbalanced_iris" "test_rusboost[SAMME.R]" # https://github.com/scikit-learn-contrib/imbalanced-learn/issues/824 "ValueDifferenceMetric" ]; meta = with lib; { description = "Library offering a number of re-sampling techniques commonly used in datasets showing strong between-class imbalance"; homepage = "https://github.com/scikit-learn-contrib/imbalanced-learn"; license = licenses.mit; maintainers = [ maintainers.rmcgibbo ]; }; }