Merge pull request #232228 from wegank/thonny-fix

thonny: fix runtime error
This commit is contained in:
Weijia Wang
2023-05-16 22:54:11 +03:00
committed by GitHub
+2 -1
View File
@@ -1,4 +1,4 @@
{ lib, fetchFromGitHub, python3, makeDesktopItem, copyDesktopItems }:
{ lib, fetchFromGitHub, python3, tk, makeDesktopItem, copyDesktopItems }:
with python3.pkgs;
@@ -42,6 +42,7 @@ buildPythonApplication rec {
preFixup = ''
wrapProgram "$out/bin/thonny" \
--set TK_LIBRARY "${tk}/lib/${tk.libPrefix}" \
--prefix PYTHONPATH : $PYTHONPATH:$(toPythonPath ${python3.pkgs.jedi})
'';