Merge pull request #172972 from dotlambda/humblewx-interpreter

python3Packages.humblewx: use correct interpreter
This commit is contained in:
Jörg Thalheim
2022-05-14 06:44:06 +01:00
committed by GitHub
@@ -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
'';