From 172592df33cd4db7cb90c752ab427ce1a7d51121 Mon Sep 17 00:00:00 2001 From: Randy Eckenrode Date: Mon, 28 Feb 2022 10:20:36 -0500 Subject: [PATCH] icnsutil: use python3.interpreter Co-authored-by: Sandro --- pkgs/development/python-modules/icnsutil/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/icnsutil/default.nix b/pkgs/development/python-modules/icnsutil/default.nix index 641da36626d6..fd6976374581 100644 --- a/pkgs/development/python-modules/icnsutil/default.nix +++ b/pkgs/development/python-modules/icnsutil/default.nix @@ -17,8 +17,8 @@ python3Packages.buildPythonPackage rec { doCheck = true; checkPhase = '' - ${python3Packages.python}/bin/python3 tests/test_icnsutil.py - ${python3Packages.python}/bin/python3 tests/test_cli.py + ${python3.interpreter} tests/test_icnsutil.py + ${python3.interpreter} tests/test_cli.py ''; meta = {