pythonPackages.dask-glm: init at 0.1.0

This commit is contained in:
Chris Ostrouchov 2018-09-13 15:12:51 -04:00
parent 93cdaaa3d4
commit 32cb956fea
No known key found for this signature in database
GPG Key ID: 9ED59B0AB1EAF573
2 changed files with 37 additions and 0 deletions

@ -0,0 +1,35 @@
{ stdenv
, buildPythonPackage
, fetchPypi
, cloudpickle
, dask
, numpy, toolz # dask[array]
, multipledispatch
, scipy
, scikitlearn
, pytest
}:
buildPythonPackage rec {
version = "0.1.0";
pname = "dask-glm";
src = fetchPypi {
inherit pname version;
sha256 = "5a38d17538558fe6a3457cd67eed0a90a5dff51a9eaebb496efb68fc432ed89a";
};
checkInputs = [ pytest ];
propagatedBuildInputs = [ cloudpickle dask numpy toolz multipledispatch scipy scikitlearn ];
checkPhase = ''
py.test dask_glm
'';
meta = with stdenv.lib; {
homepage = http://github.com/dask/dask-glm/;
description = "Generalized Linear Models with Dask";
license = licenses.bsd3;
maintainers = [ maintainers.costrouc ];
};
}

@ -1984,6 +1984,8 @@ in {
dask = callPackage ../development/python-modules/dask { };
dask-glm = callPackage ../development/python-modules/dask-glm { };
dask-ml = callPackage ../development/python-modules/dask-ml { };
datrie = callPackage ../development/python-modules/datrie { };