2021-01-25 08:26:54 +00:00
|
|
|
{
|
|
|
|
lib,
|
2024-11-10 20:47:08 +00:00
|
|
|
stdenv,
|
2018-09-13 19:12:21 +00:00
|
|
|
buildPythonPackage,
|
2024-05-13 09:52:13 +00:00
|
|
|
fetchFromGitHub,
|
2024-11-10 20:47:08 +00:00
|
|
|
|
|
|
|
# build-system
|
2024-05-13 09:52:13 +00:00
|
|
|
hatch-vcs,
|
|
|
|
hatchling,
|
|
|
|
setuptools-scm,
|
2024-11-10 20:47:08 +00:00
|
|
|
|
|
|
|
# dependencies
|
2024-05-13 09:52:13 +00:00
|
|
|
dask-expr,
|
2022-05-28 10:05:36 +00:00
|
|
|
dask-glm,
|
|
|
|
distributed,
|
|
|
|
multipledispatch,
|
2018-09-13 19:12:21 +00:00
|
|
|
numba,
|
2022-05-28 10:05:36 +00:00
|
|
|
numpy,
|
|
|
|
packaging,
|
2018-09-13 19:12:21 +00:00
|
|
|
pandas,
|
2021-05-14 18:46:36 +00:00
|
|
|
scikit-learn,
|
2018-09-13 19:12:21 +00:00
|
|
|
scipy,
|
2024-11-10 20:47:08 +00:00
|
|
|
dask,
|
|
|
|
|
|
|
|
# tests
|
2024-05-13 09:52:13 +00:00
|
|
|
pytest-mock,
|
|
|
|
pytestCheckHook,
|
2018-09-13 19:12:21 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "dask-ml";
|
2024-05-13 09:52:13 +00:00
|
|
|
version = "2024.4.4";
|
|
|
|
pyproject = true;
|
2022-05-28 10:05:36 +00:00
|
|
|
|
2024-05-13 09:52:13 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "dask";
|
|
|
|
repo = "dask-ml";
|
|
|
|
rev = "refs/tags/v${version}";
|
|
|
|
hash = "sha256-ZiBpCk3b4Tk0Hwb4uapJLEx+Nb/qHFROCnkBTNGDzoU=";
|
2018-09-13 19:12:21 +00:00
|
|
|
};
|
|
|
|
|
2024-05-13 09:52:13 +00:00
|
|
|
build-system = [
|
|
|
|
hatch-vcs
|
|
|
|
hatchling
|
2021-04-23 09:25:19 +00:00
|
|
|
setuptools-scm
|
|
|
|
];
|
|
|
|
|
2024-05-13 09:52:13 +00:00
|
|
|
dependencies = [
|
|
|
|
dask-expr
|
2019-12-10 08:18:07 +00:00
|
|
|
dask-glm
|
|
|
|
distributed
|
|
|
|
multipledispatch
|
|
|
|
numba
|
|
|
|
numpy
|
|
|
|
packaging
|
|
|
|
pandas
|
2021-05-14 18:46:36 +00:00
|
|
|
scikit-learn
|
2019-12-10 08:18:07 +00:00
|
|
|
scipy
|
2022-06-03 12:26:38 +00:00
|
|
|
] ++ dask.optional-dependencies.array ++ dask.optional-dependencies.dataframe;
|
2018-09-13 19:12:21 +00:00
|
|
|
|
2019-12-10 08:18:07 +00:00
|
|
|
pythonImportsCheck = [
|
|
|
|
"dask_ml"
|
|
|
|
"dask_ml.naive_bayes"
|
|
|
|
"dask_ml.wrappers"
|
|
|
|
"dask_ml.utils"
|
|
|
|
];
|
|
|
|
|
2024-05-13 09:52:13 +00:00
|
|
|
nativeCheckInputs = [
|
|
|
|
pytest-mock
|
|
|
|
pytestCheckHook
|
|
|
|
];
|
|
|
|
|
2024-11-10 20:47:08 +00:00
|
|
|
disabledTestPaths =
|
|
|
|
[
|
|
|
|
# AttributeError: 'csr_matrix' object has no attribute 'A'
|
|
|
|
# Fixed in https://github.com/dask/dask-ml/pull/996
|
|
|
|
"tests/test_svd.py"
|
2024-11-25 00:09:08 +00:00
|
|
|
|
|
|
|
# Tests fail with dask>=0.11.2
|
|
|
|
# RuntimeError: Not enough arguments provided
|
|
|
|
# Reported in https://github.com/dask/dask-ml/issues/1003
|
|
|
|
"tests/model_selection/test_incremental.py"
|
2024-11-10 20:47:08 +00:00
|
|
|
]
|
|
|
|
++ 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"
|
|
|
|
];
|
2024-07-06 22:17:39 +00:00
|
|
|
|
|
|
|
disabledTests = [
|
|
|
|
# Flaky: `Arrays are not almost equal to 3 decimals` (although values do actually match)
|
|
|
|
"test_whitening"
|
2024-11-25 00:09:08 +00:00
|
|
|
|
|
|
|
# Tests fail with dask>=0.11.2
|
|
|
|
# RuntimeError: Not enough arguments provided
|
|
|
|
# Reported in https://github.com/dask/dask-ml/issues/1003
|
|
|
|
"test_basic"
|
|
|
|
"test_hyperband_patience"
|
|
|
|
"test_same_random_state_same_params"
|
|
|
|
"test_search_patience_infeasible_tol"
|
|
|
|
"test_sha_max_iter_and_metadata"
|
|
|
|
"test_warns_decay_rate"
|
|
|
|
"test_warns_decay_rate_wanted"
|
2024-07-06 22:17:39 +00:00
|
|
|
];
|
|
|
|
|
2024-05-13 09:52:13 +00:00
|
|
|
__darwinAllowLocalNetworking = true;
|
|
|
|
|
2024-07-06 22:17:39 +00:00
|
|
|
meta = {
|
2018-09-13 19:12:21 +00:00
|
|
|
description = "Scalable Machine Learn with Dask";
|
2022-05-28 10:05:36 +00:00
|
|
|
homepage = "https://github.com/dask/dask-ml";
|
2024-07-06 22:17:39 +00:00
|
|
|
license = lib.licenses.bsd3;
|
|
|
|
maintainers = with lib.maintainers; [ GaetanLepage ];
|
2018-09-13 19:12:21 +00:00
|
|
|
};
|
|
|
|
}
|