pythonPackages.lightgbm: init at 2.2.3

This commit is contained in:
Chris Ostrouchov 2019-07-11 14:47:40 -04:00 committed by Frederik Rietdijk
parent e80bc6beda
commit dbb1178123
2 changed files with 46 additions and 0 deletions

View file

@ -0,0 +1,44 @@
{ lib
, buildPythonPackage
, fetchPypi
, cmake
, numpy
, scipy
, scikitlearn
}:
buildPythonPackage rec {
pname = "lightgbm";
version = "2.2.3";
src = fetchPypi {
inherit pname version;
sha256 = "40354d21da6bfa73c7ada4d01b2e0b22eaae00f93e90bdaf3fc423020c273890";
};
nativeBuildInputs = [
cmake
];
propagatedBuildInputs = [
numpy
scipy
scikitlearn
];
postConfigure = ''
export HOME=$(mktemp -d)
'';
# The pypi package doesn't distribute the tests from the GitHub
# repository. It contains c++ tests which don't seem to wired up to
# `make check`.
doCheck = false;
meta = with lib; {
description = "A fast, distributed, high performance gradient boosting (GBDT, GBRT, GBM or MART) framework";
homepage = https://github.com/Microsoft/LightGBM;
license = licenses.mit;
maintainers = with lib.maintainers; [ teh costrouc ];
};
}

View file

@ -2215,6 +2215,8 @@ in {
lightblue = callPackage ../development/python-modules/lightblue { };
lightgbm = callPackage ../development/python-modules/lightgbm { };
lightning = callPackage ../development/python-modules/lightning { };
jupyter = callPackage ../development/python-modules/jupyter { };