3.13 again

This commit is contained in:
Thomas Avé 2025-03-07 14:09:49 +01:00
parent b562516fc1
commit 553d8b3fbb
1 changed files with 2 additions and 2 deletions

View File

@ -26,10 +26,10 @@ let
patchedpython = (pkgs.symlinkJoin {
name = "python";
paths = [ pkgs.python312 ];
paths = [ pkgs.python313 ];
buildInputs = [ pkgs.makeWrapper ];
postBuild = ''
wrapProgram "$out/bin/python3.12" --prefix ${wrapPrefix} : "${pythonldlibpath}"
wrapProgram "$out/bin/python3.13" --prefix ${wrapPrefix} : "${pythonldlibpath}"
'';
});
in {