From f7b6b6bef3fbefdba335ba288611a3b36f3377af Mon Sep 17 00:00:00 2001 From: Claudio Bley Date: Fri, 12 Jul 2024 16:25:20 +0200 Subject: [PATCH] testing/python: Use default Python from nixpkgs Fixes #567 --- testing/python/vanilla.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/testing/python/vanilla.nix b/testing/python/vanilla.nix index a433f2ce4..7cb995055 100644 --- a/testing/python/vanilla.nix +++ b/testing/python/vanilla.nix @@ -1,7 +1,7 @@ let nixpkgs = import {}; filterFun = ps: [ ps.flask ]; - pythonWithPkgs = nixpkgs.python310.withPackages filterFun; + pythonWithPkgs = nixpkgs.python3.withPackages filterFun; in { python = pythonWithPkgs.python; pkgs = filterFun pythonWithPkgs.pkgs;