Merge pull request #92113 from AshyIsMe/paraview-numpy-filter

paraview: Fix dataset filtering
This commit is contained in:
Doron Behar 2020-12-16 21:44:47 +02:00 committed by GitHub
commit 9196e0db94
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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";