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:
Aaron Ash 2020-07-03 10:44:29 +10:00
parent 57568628be
commit 25865306f0

View file

@ -66,7 +66,6 @@ mkDerivation rec {
libGLU libGL
libXt
openmpi
(python3.withPackages (ps: with ps; [ numpy matplotlib mpi4py ]))
tbb
boost
ffmpeg
@ -78,6 +77,10 @@ mkDerivation rec {
qtsvg
];
propagatedBuildInputs = [
(python3.withPackages (ps: with ps; [ numpy matplotlib mpi4py ]))
];
meta = with stdenv.lib; {
homepage = "https://www.paraview.org/";
description = "3D Data analysis and visualization application";