From 129d05c889f4f28e62a26af65cb0803b327a91f6 Mon Sep 17 00:00:00 2001 From: Doron Behar Date: Mon, 26 Jan 2026 10:43:14 +0200 Subject: [PATCH] beets: disable for Python 3.14 Tracking https://github.com/beetbox/beets/issues/6232 . --- pkgs/development/python-modules/beets/default.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/development/python-modules/beets/default.nix b/pkgs/development/python-modules/beets/default.nix index 4fe0608dc154..175a63c4bc7f 100644 --- a/pkgs/development/python-modules/beets/default.nix +++ b/pkgs/development/python-modules/beets/default.nix @@ -27,6 +27,7 @@ lib, stdenv, buildPythonPackage, + pythonAtLeast, fetchFromGitHub, # build-system @@ -119,6 +120,8 @@ buildPythonPackage (finalAttrs: { hash = "sha256-H3jcEHyK13+RHVlV4zp+8M3LZ0Jc2FdmAbLpekGozLA="; }; pyproject = true; + # Waiting for https://github.com/beetbox/beets/pull/6267 + disabled = pythonAtLeast "3.14"; patches = [ # Bash completion fix for Nix