python3Packages.dask-ml: 1.0.0 -> 1.1.1

Also fix dependency issues
This commit is contained in:
Jonathan Ringer 2019-12-10 00:18:07 -08:00 committed by Jon
parent b2b2330c35
commit 430dc3b590

View File

@ -1,6 +1,7 @@
{ stdenv { stdenv
, buildPythonPackage , buildPythonPackage
, fetchPypi , fetchPypi
, pythonOlder
, dask , dask
, numpy, toolz # dask[array] , numpy, toolz # dask[array]
, numba , numba
@ -19,21 +20,41 @@
}: }:
buildPythonPackage rec { buildPythonPackage rec {
version = "1.0.0"; version = "1.1.1";
pname = "dask-ml"; pname = "dask-ml";
disabled = pythonOlder "3.6"; # >= 3.6
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
sha256 = "dde926478653bd03a3fbc501d3873a1534836608217b94d04320d1e1c07e59dc"; sha256 = "1yad9b9hd02rbdf6m1gfj74cjgcbyp7lxdj22d5h5rhv7xa3127x";
}; };
checkInputs = [ pytest xgboost tensorflow joblib distributed ]; propagatedBuildInputs = [
propagatedBuildInputs = [ dask numpy toolz numba pandas scikitlearn scipy dask-glm six multipledispatch packaging ]; dask
dask-glm
distributed
multipledispatch
numba
numpy
packaging
pandas
scikitlearn
scipy
six
toolz
];
# dask-ml has some heavy test requirements # has non-standard build from source, and pypi doesn't include tests
# and requires some very new packages
doCheck = false; doCheck = false;
# in lieu of proper tests
pythonImportsCheck = [
"dask_ml"
"dask_ml.naive_bayes"
"dask_ml.wrappers"
"dask_ml.utils"
];
meta = with stdenv.lib; { meta = with stdenv.lib; {
homepage = https://github.com/dask/dask-ml; homepage = https://github.com/dask/dask-ml;
description = "Scalable Machine Learn with Dask"; description = "Scalable Machine Learn with Dask";