2022-12-17 10:02:37 +00:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
2022-04-27 09:35:20 +00:00
|
|
|
, buildPythonPackage
|
2022-12-17 10:02:37 +00:00
|
|
|
, dask
|
|
|
|
, distributed
|
2022-04-27 09:35:20 +00:00
|
|
|
, fetchFromGitHub
|
2024-01-02 11:29:13 +00:00
|
|
|
, fetchpatch
|
2022-12-17 10:02:37 +00:00
|
|
|
, grpcio
|
2022-04-27 09:35:20 +00:00
|
|
|
, pytestCheckHook
|
|
|
|
, pythonOlder
|
|
|
|
, skein
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "dask-yarn";
|
|
|
|
version = "0.9";
|
2022-12-17 10:02:37 +00:00
|
|
|
format = "setuptools";
|
|
|
|
|
|
|
|
disabled = pythonOlder "3.7";
|
2022-04-27 09:35:20 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "dask";
|
2024-01-02 11:29:13 +00:00
|
|
|
repo = "dask-yarn";
|
|
|
|
rev = "refs/tags/${version}";
|
2022-04-27 09:35:20 +00:00
|
|
|
hash = "sha256-/BTsxQSiVQrihrCa9DE7pueyg3aPAdjd/Dt4dpUwdtM=";
|
|
|
|
};
|
|
|
|
|
2024-01-02 11:29:13 +00:00
|
|
|
patches = [
|
|
|
|
(fetchpatch { # https://github.com/dask/dask-yarn/pull/150
|
|
|
|
name = "address-deprecations-introduced-in-distributed-2021-07-0";
|
|
|
|
url = "https://github.com/dask/dask-yarn/pull/150/commits/459848afcdc22568905ee98622c74e4071496423.patch";
|
|
|
|
hash = "sha256-LS46QBdiAmsp4jQq4DdYdmmk1qzx5JZNTQUlRcRwY5k=";
|
|
|
|
})
|
|
|
|
];
|
|
|
|
|
2022-04-27 09:35:20 +00:00
|
|
|
propagatedBuildInputs = [
|
|
|
|
distributed
|
|
|
|
dask
|
|
|
|
grpcio
|
|
|
|
skein
|
|
|
|
];
|
|
|
|
|
2023-02-02 18:25:31 +00:00
|
|
|
nativeCheckInputs = [
|
2022-12-17 10:02:37 +00:00
|
|
|
pytestCheckHook
|
|
|
|
];
|
|
|
|
|
2022-04-27 09:35:20 +00:00
|
|
|
preCheck = ''
|
|
|
|
export HOME=$TMPDIR
|
|
|
|
'';
|
2022-12-17 10:02:37 +00:00
|
|
|
|
|
|
|
pythonImportsCheck = [
|
|
|
|
"dask_yarn"
|
|
|
|
];
|
|
|
|
|
|
|
|
disabledTests = [
|
|
|
|
# skein.exceptions.DriverError: Failed to start java process
|
|
|
|
"test_basic"
|
|
|
|
"test_adapt"
|
|
|
|
"test_from_specification"
|
|
|
|
"test_from_application_id"
|
|
|
|
"test_from_current"
|
|
|
|
"test_basic_async"
|
|
|
|
"test_widget_and_html_reprs"
|
|
|
|
];
|
2022-04-27 09:35:20 +00:00
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Deploy dask on YARN clusters";
|
2024-04-21 15:54:59 +00:00
|
|
|
mainProgram = "dask-yarn";
|
2022-04-27 09:35:20 +00:00
|
|
|
longDescription = ''Dask-Yarn deploys Dask on YARN clusters,
|
|
|
|
such as are found in traditional Hadoop installations.
|
|
|
|
Dask-Yarn provides an easy interface to quickly start,
|
|
|
|
stop, and scale Dask clusters natively from Python.
|
|
|
|
'';
|
|
|
|
homepage = "https://yarn.dask.org/";
|
|
|
|
license = licenses.bsd3;
|
|
|
|
maintainers = with maintainers; [ illustris ];
|
2022-12-17 10:02:37 +00:00
|
|
|
broken = stdenv.isDarwin;
|
2022-04-27 09:35:20 +00:00
|
|
|
};
|
|
|
|
}
|