14 buildPythonPackage rec {
15 pname = "dask-awkward";
16 version = "2023.11.2";
19 disabled = pythonOlder "3.8";
21 src = fetchFromGitHub {
22 owner = "dask-contrib";
23 repo = "dask-awkward";
24 rev = "refs/tags/${version}";
25 hash = "sha256-yx0B31x+BMS4alHro+hAPeVB6YK9B7Tg+3sSCMCYjKs=";
28 SETUPTOOLS_SCM_PRETEND_VERSION = version;
40 propagatedBuildInputs = [
50 pythonImportsCheck = [
55 # Tests require network access
62 description = "Native Dask collection for awkward arrays, and the library to use it";
63 homepage = "https://github.com/dask-contrib/dask-awkward";
64 changelog = "https://github.com/dask-contrib/dask-awkward/releases/tag/${version}";
65 license = licenses.bsd3;
66 maintainers = with maintainers; [ veprbl ];