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
|
{
lib,
apptools,
buildPythonPackage,
envisage,
fetchPypi,
numpy,
packaging,
pyface,
pygments,
pyqt5,
traitsui,
vtk,
wrapQtAppsHook,
}:
buildPythonPackage rec {
pname = "mayavi";
version = "4.8.3";
format = "setuptools";
src = fetchPypi {
inherit pname version;
hash = "sha256-72nMvfWPIPGzlJMNXjoW3aSxo5rcvHb3mr0mSD0prPU=";
};
nativeBuildInputs = [ wrapQtAppsHook ];
propagatedBuildInputs = [
apptools
envisage
numpy
packaging
pyface
pygments
pyqt5
traitsui
vtk
];
env.NIX_CFLAGS_COMPILE = "-Wno-error";
# Needs X server
doCheck = false;
pythonImportsCheck = [ "mayavi" ];
preFixup = ''
makeWrapperArgs+=("''${qtWrapperArgs[@]}")
'';
# stripping the ico file on macos cause segfault
stripExclude = [ "*.ico" ];
meta = {
description = "3D visualization of scientific data in Python";
homepage = "https://github.com/enthought/mayavi";
license = lib.licenses.bsdOriginal;
maintainers = [ ];
mainProgram = "mayavi2";
};
}
|