587713944a
GitOrigin-RevId: 6143fc5eeb9c4f00163267708e26191d1e918932
87 lines
1.6 KiB
Nix
87 lines
1.6 KiB
Nix
{ lib
|
|
, awkward
|
|
, buildPythonPackage
|
|
, cachetools
|
|
, dask
|
|
, dask-histogram
|
|
, distributed
|
|
, fetchFromGitHub
|
|
, hatch-vcs
|
|
, hatchling
|
|
, hist
|
|
, pandas
|
|
, pyarrow
|
|
, pytestCheckHook
|
|
, pythonOlder
|
|
, pythonRelaxDepsHook
|
|
, typing-extensions
|
|
, uproot
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "dask-awkward";
|
|
version = "2024.3.0";
|
|
pyproject = true;
|
|
|
|
disabled = pythonOlder "3.8";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "dask-contrib";
|
|
repo = "dask-awkward";
|
|
rev = "refs/tags/${version}";
|
|
hash = "sha256-Lkbp/XrDHOekMpT71pbxtuozgzU9iiGF2GJZ+tuV/yM=";
|
|
};
|
|
|
|
pythonRelaxDeps = [
|
|
"awkward"
|
|
];
|
|
|
|
nativeBuildInputs = [
|
|
hatch-vcs
|
|
hatchling
|
|
pythonRelaxDepsHook
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
awkward
|
|
cachetools
|
|
dask
|
|
typing-extensions
|
|
];
|
|
|
|
passthru.optional-dependencies = {
|
|
io = [
|
|
pyarrow
|
|
];
|
|
};
|
|
|
|
checkInputs = [
|
|
dask-histogram
|
|
distributed
|
|
hist
|
|
pandas
|
|
pytestCheckHook
|
|
uproot
|
|
] ++ lib.flatten (builtins.attrValues passthru.optional-dependencies);
|
|
|
|
pythonImportsCheck = [
|
|
"dask_awkward"
|
|
];
|
|
|
|
disabledTests = [
|
|
# Tests require network access
|
|
"test_remote_double"
|
|
"test_remote_single"
|
|
"test_from_text"
|
|
# ValueError: not a ROOT file: first four bytes...
|
|
"test_basic_root_works"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Native Dask collection for awkward arrays, and the library to use it";
|
|
homepage = "https://github.com/dask-contrib/dask-awkward";
|
|
changelog = "https://github.com/dask-contrib/dask-awkward/releases/tag/${version}";
|
|
license = licenses.bsd3;
|
|
maintainers = with maintainers; [ veprbl ];
|
|
};
|
|
}
|