dask-xgboost: remove

This commit is contained in:
Fabian Affolter 2022-05-24 08:41:15 +02:00
parent d91c644006
commit e9fc987d8d
3 changed files with 1 additions and 33 deletions

View file

@ -1,31 +0,0 @@
{ lib
, buildPythonPackage
, fetchPypi
, xgboost
, dask
, distributed
}:
buildPythonPackage rec {
version = "0.2.0";
pname = "dask-xgboost";
src = fetchPypi {
inherit pname version;
sha256 = "6d9c491dc4099f74a0df66c4d439d296c0f1fba97009fe93e21b2350f295b4ca";
};
propagatedBuildInputs = [ xgboost dask distributed ];
doCheck = false;
pythonImportsCheck = [ "dask_xdgboost" ];
meta = with lib; {
homepage = "https://github.com/dask/dask-xgboost";
description = "Interactions between Dask and XGBoost";
license = licenses.bsd3;
maintainers = [ maintainers.costrouc ];
# TypeError: __init__() got an unexpected keyword argument 'iid'
broken = true;
};
}

View file

@ -47,6 +47,7 @@ mapAliases ({
ConfigArgParse = configargparse; # added 2021-03-18
cozy = throw "cozy was removed because it was not actually https://pypi.org/project/Cozy/."; # added 2022-01-14
cryptography_vectors = "cryptography_vectors is no longer exposed in python*Packages because it is used for testing cryptography only."; # Added 2022-03-23
dask-xgboost = throw "dask-xgboost was removed because its features are available in xgboost"; # added 2022-05-24
dateutil = python-dateutil; # added 2021-07-03
demjson = throw "demjson has been removed, it was using setuptools 2to3 translation feature, which has been removed in setuptools 58"; # added 2022-01-18
detox = throw "detox is no longer maintained, and was broken since may 2019"; # added 2020-07-04

View file

@ -2067,8 +2067,6 @@ in {
dask-mpi = callPackage ../development/python-modules/dask-mpi { };
dask-xgboost = callPackage ../development/python-modules/dask-xgboost { };
dask-yarn = callPackage ../development/python-modules/dask-yarn { };
databases = callPackage ../development/python-modules/databases { };