1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
|
{
lib,
config,
stdenv,
pkgs,
buildPythonPackage,
fetchPypi,
# build-system
scikit-build-core,
# nativeBuildInputs
cmake,
ninja,
pathspec,
pyproject-metadata,
writableTmpDirAsHomeHook,
# buildInputs
llvmPackages,
boost,
ocl-icd,
opencl-headers,
# dependencies
numpy,
scipy,
# optional-dependencies
cffi,
dask,
pandas,
pyarrow,
scikit-learn,
# optionals: gpu
gpuSupport ? stdenv.hostPlatform.isLinux && !cudaSupport,
cudaSupport ? config.cudaSupport,
cudaPackages,
}:
assert gpuSupport -> !cudaSupport;
assert cudaSupport -> !gpuSupport;
buildPythonPackage rec {
inherit (pkgs.lightgbm)
pname
version
patches
;
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-yxxZcg61aTicC6dNFPUjUbVzr0ifIwAyocnzFPi6t/4=";
};
# Patch dll search path to fix proper discovery of lib_lightgbm.so
# Exception: Cannot find lightgbm library file in following paths:
# /nix/store/...-python3.13-lightgbm-4.6.0/lib/python3.13/site-packages/lib_lightgbm.so
# /nix/store/...-python3.13-lightgbm-4.6.0/lib/python3.13/site-packages/lightgbm/bin/lib_lightgbm.so
# /nix/store/...-python3.13-lightgbm-4.6.0/lib/python3.13/site-packages/lightgbm/lib/lib_lightgbm.so
postPatch = ''
substituteInPlace lightgbm/libpath.py \
--replace-fail \
'curr_path.parents[0] / "lib",' \
'curr_path.parents[1] / "lib",'
'';
build-system = [
scikit-build-core
];
nativeBuildInputs = [
cmake
ninja
pathspec
pyproject-metadata
writableTmpDirAsHomeHook
]
++ lib.optionals cudaSupport [ cudaPackages.cuda_nvcc ];
dontUseCmakeConfigure = true;
buildInputs =
(lib.optionals stdenv.cc.isClang [ llvmPackages.openmp ])
++ (lib.optionals gpuSupport [
boost
ocl-icd
opencl-headers
])
++ lib.optionals cudaSupport [
cudaPackages.cuda_nvcc
cudaPackages.cuda_cudart
];
dependencies = [
numpy
scipy
];
cmakeFlags = [
(lib.cmakeBool "USE_GPU" gpuSupport)
(lib.cmakeBool "USE_CUDA" cudaSupport)
];
optional-dependencies = {
arrow = [
cffi
pyarrow
];
dask = [
dask
pandas
]
++ dask.optional-dependencies.array
++ dask.optional-dependencies.dataframe
++ dask.optional-dependencies.distributed;
pandas = [ pandas ];
scikit-learn = [ scikit-learn ];
};
# No python tests
doCheck = false;
pythonImportsCheck = [ "lightgbm" ];
meta = {
description = "Fast, distributed, high performance gradient boosting (GBDT, GBRT, GBM or MART) framework";
homepage = "https://github.com/Microsoft/LightGBM";
changelog = "https://github.com/microsoft/LightGBM/releases/tag/v${version}";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ teh ];
};
}
|