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
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
|
{
lib,
stdenv,
buildPythonPackage,
fetchFromGitHub,
# build-system
oldest-supported-numpy,
setuptools,
# nativeBuildInputs
copyDesktopItems,
cython,
qt5,
recommonmark,
sphinx,
# dependencies
baycomp,
bottleneck,
catboost,
chardet,
httpx,
joblib,
keyring,
keyrings-alt,
matplotlib,
numpy,
openpyxl,
opentsne,
orange-canvas-core,
orange-widget-base,
pandas,
pip,
pyqt5,
pyqtgraph,
pyqtwebengine,
python-louvain,
pyyaml,
qtconsole,
requests,
scikit-learn,
scipy,
serverfiles,
xgboost,
xlrd,
xlsxwriter,
makeDesktopItem,
# passthru
gitUpdater,
python,
pytest-qt,
pytestCheckHook,
}:
let
self = buildPythonPackage rec {
pname = "orange3";
version = "3.39.0";
pyproject = true;
src = fetchFromGitHub {
owner = "biolab";
repo = "orange3";
tag = version;
hash = "sha256-P2e3Wq33UXnTmGSxkoW8kYYCBfYBB9Z50v4g7n//Fbw=";
};
build-system = [
oldest-supported-numpy
setuptools
];
postPatch = ''
substituteInPlace pyproject.toml \
--replace-fail 'cython>=3.0' 'cython'
# disable update checking
echo -e "def check_for_updates():\n\tpass" >> Orange/canvas/__main__.py
'';
nativeBuildInputs = [
copyDesktopItems
cython
qt5.wrapQtAppsHook
recommonmark
sphinx
];
enableParallelBuilding = true;
pythonRelaxDeps = [ "scikit-learn" ];
dependencies = [
baycomp
bottleneck
catboost
chardet
httpx
joblib
keyring
keyrings-alt
matplotlib
numpy
openpyxl
opentsne
orange-canvas-core
orange-widget-base
pandas
pip
pyqt5
pyqtgraph
pyqtwebengine
python-louvain
pyyaml
qtconsole
requests
scikit-learn
scipy
serverfiles
setuptools
xgboost
xlrd
xlsxwriter
];
# FIXME: ImportError: cannot import name '_variable' from partially initialized module 'Orange.data' (most likely due to a circular import) (/build/source/Orange/data/__init__.py)
doCheck = false;
# FIXME: pythonRelaxDeps is not relaxing the scikit-learn version constraint, had to disable this
dontCheckRuntimeDeps = true;
pythonImportsCheck = [
"Orange"
"Orange.data._variable"
];
desktopItems = [
(makeDesktopItem {
name = "orange";
exec = "orange-canvas";
desktopName = "Orange Data Mining";
genericName = "Data Mining Suite";
comment = "Explore, analyze, and visualize your data";
icon = "orange-canvas";
mimeTypes = [ "application/x-extension-ows" ];
categories = [
"Science"
"Education"
"ArtificialIntelligence"
"DataVisualization"
"NumericalAnalysis"
"Qt"
];
keywords = [
"Machine Learning"
"Scientific Visualization"
"Statistical Analysis"
];
})
];
postInstall = ''
wrapProgram $out/bin/orange-canvas \
"${"$"}{qtWrapperArgs[@]}"
mkdir -p $out/share/icons/hicolor/{256x256,48x48}/apps
cp distribute/icon-256.png $out/share/icons/hicolor/256x256/apps/orange-canvas.png
cp distribute/icon-48.png $out/share/icons/hicolor/48x48/apps/orange-canvas.png
'';
passthru = {
updateScript = gitUpdater { };
tests.unittests = stdenv.mkDerivation {
name = "${self.name}-tests";
inherit (self) src;
preCheck = ''
export HOME=$(mktemp -d)
export QT_PLUGIN_PATH="${qt5.qtbase.bin}/${qt5.qtbase.qtPluginPrefix}"
export QT_QPA_PLATFORM_PLUGIN_PATH="${qt5.qtbase.bin}/lib/qt-${qt5.qtbase.version}/plugins";
export QT_QPA_PLATFORM=offscreen
rm Orange -rf
cp -r ${self}/${python.sitePackages}/Orange .
chmod +w -R .
substituteInPlace Orange/classification/tests/test_xgb_cls.py \
--replace-fail test_learners mk_test_learners
substituteInPlace Orange/modelling/tests/test_xgb.py \
--replace-fail test_learners mk_test_learners
substituteInPlace Orange/**/tests/*.py \
--replace-fail test_filename filename_test
# TODO: debug why orange is crashing on GC, may be a upstream issue
chmod +x Orange/__init__.py
echo "import gc; gc.disable()" | tee -a Orange/__init__.py
'';
nativeBuildInputs = [
pytest-qt
pytestCheckHook
];
postCheck = ''
touch $out
'';
doBuild = false;
doInstall = false;
buildInputs = [ self ];
};
};
meta = {
description = "Data mining and visualization toolbox for novice and expert alike";
homepage = "https://orangedatamining.com/";
changelog = "https://github.com/biolab/orange3/blob/${src.tag}/CHANGELOG.md";
license = [ lib.licenses.gpl3Plus ];
maintainers = [ ];
mainProgram = "orange-canvas";
};
};
in
self
|