1{ lib
2, buildPythonPackage
3, fetchPypi
4, cloudpickle
5, dask
6, numpy, toolz # dask[array]
7, multipledispatch
8, setuptools-scm
9, scipy
10, scikit-learn
11, pytestCheckHook
12}:
13
14buildPythonPackage rec {
15 version = "0.2.0";
16 pname = "dask-glm";
17
18 src = fetchPypi {
19 inherit pname version;
20 sha256 = "58b86cebf04fe5b9e58092e1c467e32e60d01e11b71fdc628baaa9fc6d1adee5";
21 };
22
23 nativeBuildInputs = [ setuptools-scm ];
24 checkInputs = [ pytestCheckHook ];
25 propagatedBuildInputs = [ cloudpickle dask numpy toolz multipledispatch scipy scikit-learn ];
26
27 meta = with lib; {
28 homepage = "https://github.com/dask/dask-glm/";
29 description = "Generalized Linear Models with Dask";
30 license = licenses.bsd3;
31 maintainers = [ maintainers.costrouc ];
32 };
33}