picard: bump python to 3.13

This commit is contained in:
Sandro Jäckel
2026-07-24 14:33:35 +03:00
committed by Doron Behar
parent e20dc30419
commit 3255983a75
+4 -2
View File
@@ -1,7 +1,7 @@
{
lib,
stdenv,
python312Packages,
python313Packages,
fetchFromGitHub,
chromaprint,
@@ -16,7 +16,9 @@
}:
let
pythonPackages = python312Packages;
# A few more tests fail with python314Pacakges, indicating the code isn't
# ready for it yet.
pythonPackages = python313Packages;
pyqt5 = if enablePlayback then pythonPackages.pyqt5-multimedia else pythonPackages.pyqt5;
in
pythonPackages.buildPythonApplication (finalAttrs: {