jetbrains-mono: use python 3.13 gftools to fix build

'fs' is unsupported on Python 3.14 which breaks 'gftools' on 3.14.
This commit is contained in:
Leona Maroni
2026-07-04 09:08:39 +02:00
parent e0ac37b915
commit 2278d8e20e

View File

@@ -2,7 +2,7 @@
lib,
stdenvNoCC,
fetchFromGitHub,
python3Packages,
python313Packages,
}:
stdenvNoCC.mkDerivation rec {
@@ -19,7 +19,8 @@ stdenvNoCC.mkDerivation rec {
env."PROTOCOL_BUFFERS_PYTHON_IMPLEMENTATION" = "python";
nativeBuildInputs = [
python3Packages.gftools
# Currently broken on 3.14
python313Packages.gftools
];
buildPhase = ''