Unverified Commit 580ee5ad authored by Philip Wilk's avatar Philip Wilk
Browse files

python312Packages.imbalanced-learn: 0.12.4 -> 0.13.0

parent f3ce8371
Loading
Loading
Loading
Loading
+23 −4
Original line number Diff line number Diff line
@@ -14,6 +14,8 @@
  tensorflow,
  threadpoolctl,
  pytestCheckHook,
  sklearn-compat,
  python,
}:

buildPythonPackage rec {
@@ -41,6 +43,7 @@ buildPythonPackage rec {
    scikit-learn
    scipy
    threadpoolctl
    sklearn-compat
  ];

  optional-dependencies = {
@@ -60,19 +63,35 @@ buildPythonPackage rec {

  preCheck = ''
    export HOME=$TMPDIR
    # The GitHub source contains too many files picked up by pytest like
    # examples and documentation files which can't pass.
    cd $out/${python.sitePackages}
  '';

  disabledTestPaths = [
    # require tensorflow and keras, but we don't want to
    # add them to nativeCheckInputs just for this tests
    "imblearn/keras/_generator.py"
    "imblearn/keras"
    "imblearn/tensorflow"
    # even with precheck directory change, pytest still tries to test docstrings
    "imblearn/tests/test_docstring_parameters.py"
    # Skip dependencies test - pythonImportsCheck already does this
    "imblearn/utils/tests/test_min_dependencies.py"
  ];

  meta = with lib; {
  disabledTests = [
    # Broken upstream test https://github.com/scikit-learn-contrib/imbalanced-learn/issues/1131
    "test_estimators_compatibility_sklearn"
  ];

  meta = {
    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";
    changelog = "https://github.com/scikit-learn-contrib/imbalanced-learn/releases/tag/${version}";
    license = licenses.mit;
    maintainers = [ maintainers.rmcgibbo ];
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [
      rmcgibbo
      philipwilk
    ];
  };
}