{ lib, buildPythonPackage, fetchFromGitHub, hatchling, hatch-vcs, colorcet, hypothesis, multipledispatch, numba, numpy, pandas, param, pyct, requests, scipy, toolz, packaging, xarray, pytestCheckHook, pytest-xdist, writableTmpDirAsHomeHook, }: buildPythonPackage rec { pname = "datashader"; version = "0.19.0"; pyproject = true; src = fetchFromGitHub { owner = "holoviz"; repo = "datashader"; tag = "v${version}"; hash = "sha256-Pc2mORxJA2JKioIzuBYU/LjUkij6ecqQh6tN/8z9ttI="; }; build-system = [ hatchling hatch-vcs ]; dependencies = [ colorcet multipledispatch numba numpy pandas param pyct requests scipy toolz packaging xarray ]; nativeCheckInputs = [ pytestCheckHook pytest-xdist writableTmpDirAsHomeHook hypothesis ]; disabledTestPaths = [ "scripts/download_data.py" ]; pythonImportsCheck = [ "datashader" ]; meta = { description = "Data visualization toolchain based on aggregating into a grid"; mainProgram = "datashader"; homepage = "https://datashader.org"; changelog = "https://github.com/holoviz/datashader/blob/${src.tag}/CHANGELOG.md"; license = lib.licenses.bsd3; maintainers = with lib.maintainers; [ nickcao locnide ]; }; }