python312Packages.dask-ml: fix darwin build

This commit is contained in:
Gaetan Lepage 2024-11-10 21:47:08 +01:00
parent 783f44cd4e
commit d1cae02bdf

View File

@ -1,12 +1,15 @@
{
lib,
stdenv,
buildPythonPackage,
pythonOlder,
fetchFromGitHub,
# build-system
hatch-vcs,
hatchling,
setuptools-scm,
dask,
# dependencies
dask-expr,
dask-glm,
distributed,
@ -17,6 +20,9 @@
pandas,
scikit-learn,
scipy,
dask,
# tests
pytest-mock,
pytestCheckHook,
}:
@ -26,8 +32,6 @@ buildPythonPackage rec {
version = "2024.4.4";
pyproject = true;
disabled = pythonOlder "3.6";
src = fetchFromGitHub {
owner = "dask";
repo = "dask-ml";
@ -66,10 +70,18 @@ buildPythonPackage rec {
pytestCheckHook
];
disabledTestPaths = [
disabledTestPaths =
[
# AttributeError: 'csr_matrix' object has no attribute 'A'
# Fixed in https://github.com/dask/dask-ml/pull/996
"tests/test_svd.py"
]
++ lib.optionals stdenv.isDarwin [
# RuntimeError: Not enough arguments provided: missing keys
"tests/model_selection/test_hyperband.py"
"tests/model_selection/test_incremental.py"
"tests/model_selection/test_incremental_warns.py"
"tests/model_selection/test_successive_halving.py"
];
disabledTests = [