47 lines
1.3 KiB
Nix
47 lines
1.3 KiB
Nix
{ lib, buildPythonPackage, pythonOlder, fetchPypi, wrapQtAppsHook
|
|
, pyface, pygments, numpy, vtk, traitsui, envisage, apptools, pyqt5
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "mayavi";
|
|
version = "4.7.3";
|
|
|
|
disabled = pythonOlder "3.8";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
extension = "tar.gz";
|
|
sha256 = "Zw0AI7nNLSNGxFHbm6L2HaI6XfUDOyWuqJy22BuUZPA=";
|
|
};
|
|
|
|
postPatch = ''
|
|
# Discovery of 'vtk' in setuptools is not working properly, due to a missing
|
|
# .egg-info in the vtk package. It does however import and run just fine.
|
|
substituteInPlace mayavi/__init__.py --replace "'vtk'" ""
|
|
|
|
# building the docs fails with the usual Qt xcb error, so skip:
|
|
substituteInPlace setup.py \
|
|
--replace "build.build.run(self)" "build.build.run(self); return"
|
|
'';
|
|
|
|
nativeBuildInputs = [ wrapQtAppsHook ];
|
|
|
|
propagatedBuildInputs = [
|
|
pyface pygments numpy vtk traitsui envisage apptools pyqt5
|
|
];
|
|
|
|
doCheck = false; # Needs X server
|
|
pythonImportsCheck = [ "mayavi" ];
|
|
|
|
preFixup = ''
|
|
makeWrapperArgs+=("''${qtWrapperArgs[@]}")
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "3D visualization of scientific data in Python";
|
|
homepage = "https://github.com/enthought/mayavi";
|
|
maintainers = with maintainers; [ knedlsepp ];
|
|
license = licenses.bsdOriginal;
|
|
};
|
|
}
|