Back to python 3.12?

This commit is contained in:
Thomas Avé 2025-03-07 13:59:27 +01:00
parent a71d92d118
commit 529bff3606
1 changed files with 2 additions and 2 deletions

View File

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