mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 07:46:09 +01:00
Merge pull request #78602 from jobojeha/feature/paraview-pythonpath-prefix
paraview: prefix PYTHONPATH
This commit is contained in:
commit
8754b61147
1 changed files with 3 additions and 3 deletions
|
@ -55,11 +55,11 @@ mkDerivation rec {
|
|||
# so we need to put the correct sitePackages (with numpy) back on the path
|
||||
postInstall = ''
|
||||
wrapProgram $out/bin/paraview \
|
||||
--set PYTHONPATH "${python.pkgs.numpy}/${python.sitePackages}"
|
||||
--prefix PYTHONPATH "${python.pkgs.numpy}/${python.sitePackages}"
|
||||
wrapProgram $out/bin/pvbatch \
|
||||
--set PYTHONPATH "${python.pkgs.numpy}/${python.sitePackages}"
|
||||
--prefix PYTHONPATH "${python.pkgs.numpy}/${python.sitePackages}"
|
||||
wrapProgram $out/bin/pvpython \
|
||||
--set PYTHONPATH "${python.pkgs.numpy}/${python.sitePackages}"
|
||||
--prefix PYTHONPATH "${python.pkgs.numpy}/${python.sitePackages}"
|
||||
'';
|
||||
|
||||
meta = {
|
||||
|
|
Loading…
Reference in a new issue