paraview: fix Python shell

Fixes `paraview` module import error in pvpython/pvbatch (#215144) by
building with Python 3.9. Also implements `mkDerivation` recommendations
from #180841.
This commit is contained in:
Alexander Kiselyov 2023-02-07 20:25:01 +03:00 committed by David Guibert
parent a86effdd9d
commit 0c63aa1630
2 changed files with 8 additions and 5 deletions

View File

@ -1,7 +1,7 @@
{ lib, fetchFromGitLab, fetchurl { lib, stdenv, fetchFromGitLab, fetchurl
, boost, cmake, ffmpeg, qtbase, qtx11extras , boost, cmake, ffmpeg, wrapQtAppsHook, qtbase, qtx11extras
, qttools, qtxmlpatterns, qtsvg, gdal, gfortran, libXt, makeWrapper , qttools, qtxmlpatterns, qtsvg, gdal, gfortran, libXt, makeWrapper
, mkDerivation, ninja, mpi, python3, tbb, libGLU, libGL , ninja, mpi, python3, tbb, libGLU, libGL
, withDocs ? true , withDocs ? true
}: }:
@ -26,7 +26,7 @@ let
}) })
]; ];
in mkDerivation rec { in stdenv.mkDerivation rec {
pname = "paraview"; pname = "paraview";
inherit version; inherit version;
@ -68,6 +68,7 @@ in mkDerivation rec {
makeWrapper makeWrapper
ninja ninja
gfortran gfortran
wrapQtAppsHook
]; ];
buildInputs = [ buildInputs = [

View File

@ -32118,7 +32118,9 @@ with pkgs;
pavucontrol = callPackage ../applications/audio/pavucontrol { }; pavucontrol = callPackage ../applications/audio/pavucontrol { };
paraview = libsForQt5.callPackage ../applications/graphics/paraview { }; paraview = libsForQt5.callPackage ../applications/graphics/paraview {
python3 = python39;
};
parlatype = callPackage ../applications/audio/parlatype { }; parlatype = callPackage ../applications/audio/parlatype { };