quodlibet: fix python3.13 build (#418653)

This commit is contained in:
Peder Bergebakken Sundt
2025-06-24 04:25:57 +02:00
committed by GitHub
@@ -118,7 +118,8 @@ python3.pkgs.buildPythonApplication {
++ lib.optionals withMusicBrainzNgs [ musicbrainzngs ]
++ lib.optionals withPahoMqtt [ paho-mqtt ]
++ lib.optionals withPypresence [ pypresence ]
++ lib.optionals withSoco [ soco ];
++ lib.optionals withSoco [ soco ]
++ lib.optionals (pythonAtLeast "3.13") [ standard-telnetlib ];
nativeCheckInputs =
[
@@ -170,7 +171,7 @@ python3.pkgs.buildPythonApplication {
gappsWrapperArgs+=(--prefix PATH : ${kakasi}/bin)
'';
meta = with lib; {
meta = {
description = "GTK-based audio player written in Python, using the Mutagen tagging library";
longDescription = ''
Quod Libet is a GTK-based audio player written in Python, using
@@ -186,8 +187,8 @@ python3.pkgs.buildPythonApplication {
& internet radio, and all major audio formats.
'';
homepage = "https://quodlibet.readthedocs.io/en/latest";
license = licenses.gpl2Plus;
maintainers = with maintainers; [
license = lib.licenses.gpl2Plus;
maintainers = with lib.maintainers; [
coroa
pbogdan
];