16 buildPythonPackage rec {
19 format = "setuptools";
21 disabled = pythonOlder "3.7";
24 inherit pname version;
25 hash = "sha256-yUelZoZmmKAdeZeK5zIzy16DitXq1ghRQ1gsXpMLmko=";
32 propagatedBuildInputs = [
39 ] ++ dask.optional-dependencies.array;
46 pythonImportsCheck = [
51 # Circular dependency with dask-ml
52 "dask_glm/tests/test_estimators.py"
53 # Test tries to imort an obsolete method
54 "dask_glm/tests/test_utils.py"
58 # missing fixture with distributed>=2022.8.0
59 "test_determinism_distributed"
63 description = "Generalized Linear Models with Dask";
64 homepage = "https://github.com/dask/dask-glm/";
65 license = licenses.bsd3;
66 maintainers = with maintainers; [ ];