python313FreeThreading: fix build (#337791)

This commit is contained in:
OTABI Tomoya
2024-08-31 01:07:18 +09:00
committed by GitHub
@@ -135,7 +135,7 @@ let
in passthruFun rec {
inherit self sourceVersion packageOverrides;
implementation = "cpython";
libPrefix = "python${pythonVersion}";
libPrefix = "python${pythonVersion}${lib.optionalString (!enableGIL) "t"}";
executable = libPrefix;
pythonVersion = with sourceVersion; "${major}.${minor}";
sitePackages = "lib/${libPrefix}/site-packages";