Merge pull request #175088 from r-ryantm/auto-update/python3.10-dask-ml

python310Packages.dask-ml: 2022.1.22 -> 2022.5.27
This commit is contained in:
Fabian Affolter 2022-05-28 12:50:30 +02:00 committed by GitHub
commit 6c09a1920a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,29 +1,31 @@
{ lib { lib
, buildPythonPackage , buildPythonPackage
, fetchPypi
, pythonOlder
, dask , dask
, numpy, toolz # dask[array] , dask-glm
, distributed
, fetchPypi
, multipledispatch
, numba , numba
, numpy
, packaging
, pandas , pandas
, pythonOlder
, scikit-learn , scikit-learn
, scipy , scipy
, dask-glm
, six
, multipledispatch
, packaging
, distributed
, setuptools-scm , setuptools-scm
, toolz
}: }:
buildPythonPackage rec { buildPythonPackage rec {
version = "2022.1.22";
pname = "dask-ml"; pname = "dask-ml";
disabled = pythonOlder "3.6"; # >= 3.6 version = "2022.5.27";
format = "setuptools";
disabled = pythonOlder "3.6";
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
sha256 = "21a128e9f4f10e3b39cf82b36266eae28b17d16f2f6aa351bd73eb361e49326a"; hash = "sha256-Y2nTk0GSvMGSP87oTD+4+8zsoQITeQEHC6Px2eOGzOQ=";
}; };
nativeBuildInputs = [ nativeBuildInputs = [
@ -41,14 +43,12 @@ buildPythonPackage rec {
pandas pandas
scikit-learn scikit-learn
scipy scipy
six
toolz toolz
]; ];
# has non-standard build from source, and pypi doesn't include tests # has non-standard build from source, and pypi doesn't include tests
doCheck = false; doCheck = false;
# in lieu of proper tests
pythonImportsCheck = [ pythonImportsCheck = [
"dask_ml" "dask_ml"
"dask_ml.naive_bayes" "dask_ml.naive_bayes"
@ -57,9 +57,9 @@ buildPythonPackage rec {
]; ];
meta = with lib; { meta = with lib; {
homepage = "https://github.com/dask/dask-ml";
description = "Scalable Machine Learn with Dask"; description = "Scalable Machine Learn with Dask";
homepage = "https://github.com/dask/dask-ml";
license = licenses.bsd3; license = licenses.bsd3;
maintainers = [ maintainers.costrouc ]; maintainers = with maintainers; [ costrouc ];
}; };
} }