python3Packages.humblewx: use correct interpreter

main
Robert Schütz 2 years ago
parent c9cbdf6b31
commit 545be00e30
  1. 4
      pkgs/development/python-modules/humblewx/default.nix

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

Loading…
Cancel
Save