python3Packages.humblewx: use correct interpreter

This commit is contained in:
Robert Schütz 2022-05-14 04:14:54 +00:00
parent c9cbdf6b31
commit 545be00e30

View File

@ -2,7 +2,7 @@
, fetchFromGitHub
, buildPythonPackage
, wxPython_4_0
, python3
, python
}:
buildPythonPackage rec {
@ -22,7 +22,7 @@ buildPythonPackage rec {
checkPhase = ''
runHook preCheck
for i in examples/*; do
${python3.interpreter} $i
${python.interpreter} $i
done
runHook postCheck
'';