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
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
fetchpatch,
setuptools,
pytestCheckHook,
writeText,
autograd,
cma,
cython,
deprecated,
dill,
matplotlib,
nbformat,
notebook,
numba,
numpy,
scipy,
}:
buildPythonPackage rec {
pname = "pymoo";
version = "0.6.0.1";
pyproject = true;
src = fetchFromGitHub {
owner = "anyoptimization";
repo = "pymoo";
rev = version;
hash = "sha256-+qtW7hfSo266n1SRzAgHIu99W5Sl+NYbKOHXv/JI9IA=";
};
pymoo_data = fetchFromGitHub {
owner = "anyoptimization";
repo = "pymoo-data";
rev = "33f61a78182ceb211b95381dd6d3edee0d2fc0f3";
hash = "sha256-iGWPepZw3kJzw5HKV09CvemVvkvFQ38GVP+BAryBSs0=";
};
patches = [
# https://github.com/anyoptimization/pymoo/pull/407
(fetchpatch {
url = "https://github.com/anyoptimization/pymoo/commit/be57ece64275469daece1e8ef12b2b6ee05362c9.diff";
hash = "sha256-BLPrUqNbAsAecfYahESEJF6LD+kehUYmkTvl/nvyqII=";
})
];
pythonRelaxDeps = [ "cma" ];
pythonRemoveDeps = [ "alive-progress" ];
postPatch = ''
substituteInPlace pymoo/util/display/display.py \
--replace-fail "from pymoo.util.display.progress import ProgressBar" "" \
--replace-fail "ProgressBar() if progress else None" \
"print('Missing alive_progress needed for progress=True!') if progress else None"
'';
build-system = [
setuptools
cython
];
dependencies = [
autograd
cma
deprecated
dill
matplotlib
numpy
scipy
];
doCheck = true;
preCheck = ''
substituteInPlace pymoo/config.py \
--replace-fail "https://raw.githubusercontent.com/anyoptimization/pymoo-data/main/" \
"file://$pymoo_data/"
'';
nativeCheckInputs = [
pytestCheckHook
nbformat
notebook
numba
];
# Select some lightweight tests
pytestFlagsArray = [ "-m 'not long'" ];
disabledTests = [
# ModuleNotFoundError: No module named 'pymoo.cython.non_dominated_sorting'
"test_fast_non_dominated_sorting"
"test_efficient_non_dominated_sort"
];
# Avoid crashing sandboxed build on macOS
MATPLOTLIBRC = writeText "" ''
backend: Agg
'';
pythonImportsCheck = [ "pymoo" ];
meta = with lib; {
description = "Multi-objective Optimization in Python";
homepage = "https://pymoo.org/";
license = licenses.asl20;
maintainers = with maintainers; [ veprbl ];
};
}
|