2021-01-25 08:26:54 +00:00
|
|
|
{ lib
|
2018-09-13 19:12:51 +00:00
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
|
|
|
, cloudpickle
|
|
|
|
, dask
|
|
|
|
, numpy, toolz # dask[array]
|
|
|
|
, multipledispatch
|
2021-04-18 17:51:20 +00:00
|
|
|
, setuptools-scm
|
2018-09-13 19:12:51 +00:00
|
|
|
, scipy
|
2021-05-14 18:46:36 +00:00
|
|
|
, scikit-learn
|
2021-04-23 08:53:37 +00:00
|
|
|
, pytestCheckHook
|
2018-09-13 19:12:51 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
2018-11-04 10:34:56 +00:00
|
|
|
version = "0.2.0";
|
2018-09-13 19:12:51 +00:00
|
|
|
pname = "dask-glm";
|
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2018-11-04 10:34:56 +00:00
|
|
|
sha256 = "58b86cebf04fe5b9e58092e1c467e32e60d01e11b71fdc628baaa9fc6d1adee5";
|
2018-09-13 19:12:51 +00:00
|
|
|
};
|
|
|
|
|
2021-04-18 17:51:20 +00:00
|
|
|
nativeBuildInputs = [ setuptools-scm ];
|
2021-04-23 08:53:37 +00:00
|
|
|
checkInputs = [ pytestCheckHook ];
|
2021-05-14 18:46:36 +00:00
|
|
|
propagatedBuildInputs = [ cloudpickle dask numpy toolz multipledispatch scipy scikit-learn ];
|
2018-09-13 19:12:51 +00:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://github.com/dask/dask-glm/";
|
2018-09-13 19:12:51 +00:00
|
|
|
description = "Generalized Linear Models with Dask";
|
|
|
|
license = licenses.bsd3;
|
|
|
|
maintainers = [ maintainers.costrouc ];
|
|
|
|
};
|
|
|
|
}
|