From 2d71c5f5dd886df882309e35574d8bc5cc8d7a82 Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Wed, 9 Apr 2025 02:48:39 +0200 Subject: [PATCH] flutter: unpin python3.9 No version we have in nixpkgs is older than 3.20. --- pkgs/development/compilers/flutter/engine/package.nix | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/pkgs/development/compilers/flutter/engine/package.nix b/pkgs/development/compilers/flutter/engine/package.nix index e18c31ccdbec..f960a9d99f28 100644 --- a/pkgs/development/compilers/flutter/engine/package.nix +++ b/pkgs/development/compilers/flutter/engine/package.nix @@ -37,7 +37,6 @@ pkg-config, ninja, python312, - python39, gitMinimal, version, flutterVersion, @@ -58,7 +57,7 @@ let constants = callPackage ./constants.nix { platform = stdenv.targetPlatform; }; - python3 = if lib.versionAtLeast flutterVersion "3.20" then python312 else python39; + python3 = python312; src = callPackage ./source.nix { inherit