paraview: Fix dataset filtering
Paraview requires python and numpy to be available at runtime not just build time. Filtering a csv dataset uses numpy and throws an error without python and numpy being available in the propagatedBuildInputs.
This commit is contained in:
parent
57568628be
commit
25865306f0
@ -66,7 +66,6 @@ mkDerivation rec {
|
|||||||
libGLU libGL
|
libGLU libGL
|
||||||
libXt
|
libXt
|
||||||
openmpi
|
openmpi
|
||||||
(python3.withPackages (ps: with ps; [ numpy matplotlib mpi4py ]))
|
|
||||||
tbb
|
tbb
|
||||||
boost
|
boost
|
||||||
ffmpeg
|
ffmpeg
|
||||||
@ -78,6 +77,10 @@ mkDerivation rec {
|
|||||||
qtsvg
|
qtsvg
|
||||||
];
|
];
|
||||||
|
|
||||||
|
propagatedBuildInputs = [
|
||||||
|
(python3.withPackages (ps: with ps; [ numpy matplotlib mpi4py ]))
|
||||||
|
];
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
homepage = "https://www.paraview.org/";
|
homepage = "https://www.paraview.org/";
|
||||||
description = "3D Data analysis and visualization application";
|
description = "3D Data analysis and visualization application";
|
||||||
|
Loading…
x
Reference in New Issue
Block a user