python3Packages.pygbm: remove

This commit is contained in:
natsukium 2023-06-20 21:42:26 +09:00
parent 11eb1c2bc9
commit bb9ec832fe
No known key found for this signature in database
GPG Key ID: 9EA45A31DB994C53
3 changed files with 1 additions and 49 deletions

View File

@ -1,47 +0,0 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, scipy
, numpy
, numba
, scikit-learn
, pytest
, pythonOlder
}:
buildPythonPackage rec {
pname = "pygbm";
version = "0.1.0";
disabled = pythonOlder "3.6";
src = fetchFromGitHub {
owner = "ogrisel";
repo = pname;
rev = "v${version}";
sha256 = "1qg2md86d0z5aa6jn8kj3rxsippsqsccx1dbraspdsdkycncvww3";
};
propagatedBuildInputs = [
scipy
numpy
numba
scikit-learn
];
nativeCheckInputs = [
pytest
];
checkPhase = ''
# numerical rounding error in test
pytest -k "not test_derivatives"
'';
meta = with lib; {
description = "Experimental Gradient Boosting Machines in Python";
homepage = "https://github.com/ogrisel/pygbm";
license = licenses.mit;
maintainers = [ maintainers.costrouc ];
broken = true;
};
}

View File

@ -209,6 +209,7 @@ mapAliases ({
pyblake2 = throw "pyblake2 is deprecated in favor of hashlib"; # added 2023-04-23
pyblock = throw "pyblock has been removed, since it is abandoned and broken"; # added 2023-06-20
pydrive = throw "pydrive is broken and deprecated and has been replaced with pydrive2."; # added 2022-06-01
pygbm = throw "pygbm has been removed, since it is abandoned and broken"; # added 2023-06-20
PyGithub = pygithub; # added 2023-02-19
pyGtkGlade = throw "Glade support for pygtk has been removed"; # added 2022-01-15
pycallgraph = throw "pycallgraph has been removed, it was using setuptools 2to3 translation feature, which has been removed in setuptools 58"; # added 2022-01-18

View File

@ -8640,8 +8640,6 @@ self: super: with self; {
pygatt = callPackage ../development/python-modules/pygatt { };
pygbm = callPackage ../development/python-modules/pygbm { };
pygccxml = callPackage ../development/python-modules/pygccxml { };
pygdbmi = callPackage ../development/python-modules/pygdbmi { };