nixpkgs/pkgs/development/python-modules/lightgbm/default.nix

50 lines
1.1 KiB
Nix
Raw Normal View History

{ lib, stdenv
2019-07-11 18:47:40 +00:00
, buildPythonPackage
, fetchPypi
, cmake
, numpy
, scipy
, scikit-learn
, llvmPackages ? null
2019-07-11 18:47:40 +00:00
}:
buildPythonPackage rec {
pname = "lightgbm";
version = "3.2.0";
2019-07-11 18:47:40 +00:00
src = fetchPypi {
inherit pname version;
sha256 = "000c6e0e225834a8a94a84571cf41e4b7c7b97a0db6d286c1237de8ba6066726";
2019-07-11 18:47:40 +00:00
};
nativeBuildInputs = [
cmake
];
2019-09-13 23:48:52 +00:00
dontUseCmakeConfigure = true;
buildInputs = lib.optional stdenv.cc.isClang [ llvmPackages.openmp ];
2019-07-11 18:47:40 +00:00
propagatedBuildInputs = [
numpy
scipy
scikit-learn
2019-07-11 18:47:40 +00:00
];
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;
pythonImportsCheck = [ "lightgbm" ];
2019-07-11 18:47:40 +00:00
meta = with lib; {
2019-07-11 18:47:40 +00:00
description = "A fast, distributed, high performance gradient boosting (GBDT, GBRT, GBM or MART) framework";
homepage = "https://github.com/Microsoft/LightGBM";
2019-07-11 18:47:40 +00:00
license = licenses.mit;
maintainers = with maintainers; [ teh costrouc ];
2019-07-11 18:47:40 +00:00
};
}