koboldcpp: use python3 instead of python311

Reason: https://github.com/NixOS/nixpkgs/pull/314450#discussion_r1617133115
This commit is contained in:
DontEatOreo 2024-07-07 23:21:14 +03:00
parent 5292f247a1
commit c5da1f1164
No known key found for this signature in database
GPG Key ID: 0DB5361BEEE530AB

View File

@ -4,7 +4,7 @@
stdenv,
makeWrapper,
gitUpdater,
python311Packages,
python3Packages,
tk,
darwin,
@ -56,10 +56,10 @@ effectiveStdenv.mkDerivation (finalAttrs: {
nativeBuildInputs = [
makeWrapper
python311Packages.wrapPython
python3Packages.wrapPython
];
pythonInputs = builtins.attrValues { inherit (python311Packages) tkinter customtkinter packaging; };
pythonInputs = builtins.attrValues { inherit (python3Packages) tkinter customtkinter packaging; };
buildInputs =
[ tk ]