11 buildPythonPackage rec {
12 pname = "dask-histogram";
13 version = "2023.10.0";
16 src = fetchFromGitHub {
17 owner = "dask-contrib";
18 repo = "dask-histogram";
19 rev = "refs/tags/${version}";
20 hash = "sha256-ugAqNdvCROCCXURwsGLpnl/lBEAremvTI7MVa/TWt6c=";
28 propagatedBuildInputs = [
33 SETUPTOOLS_SCM_PRETEND_VERSION = version;
39 pythonImportsCheck = [
44 description = "Histograms with task scheduling";
45 homepage = "https://dask-histogram.readthedocs.io/";
46 license = with licenses; [ bsd3 ];
47 maintainers = with maintainers; [ veprbl ];