From 16684c97179d82d6dbb353bc091acb4838aad34c Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Sun, 12 Apr 2026 00:39:25 +0000 Subject: [PATCH 1/3] python3Packages.beets: 2.8.0 -> 2.9.0 --- pkgs/development/python-modules/beets/default.nix | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/pkgs/development/python-modules/beets/default.nix b/pkgs/development/python-modules/beets/default.nix index 0206b6e48488..37f7ee3783cb 100644 --- a/pkgs/development/python-modules/beets/default.nix +++ b/pkgs/development/python-modules/beets/default.nix @@ -27,7 +27,6 @@ lib, stdenv, buildPythonPackage, - pythonAtLeast, fetchFromGitHub, # build-system @@ -113,16 +112,14 @@ buildPythonPackage (finalAttrs: { pname = "beets"; - version = "2.8.0"; + version = "2.9.0"; src = fetchFromGitHub { owner = "beetbox"; repo = "beets"; tag = "v${finalAttrs.version}"; - hash = "sha256-8sYoy11eocn7UDeTuaPqOxXZLdUqkabU4DMNLBD5Xp4="; + hash = "sha256-dJhWKZwhKXyFQVO9xt2v/NSa7bSg0e78zga/t9dlTyE="; }; pyproject = true; - # Waiting for https://github.com/beetbox/beets/pull/6267 - disabled = pythonAtLeast "3.14"; patches = extraPatches; @@ -181,6 +178,7 @@ buildPythonPackage (finalAttrs: { ]; nativeCheckInputs = [ + ffmpeg pytestCheckHook pytest-cov-stub pytest-flask @@ -273,13 +271,12 @@ buildPythonPackage (finalAttrs: { bareasc = { }; beatport.propagatedBuildInputs = [ requests-oauthlib ]; bench.testPaths = [ ]; - bpd.testPaths = [ ]; + bpd = { }; bpm.testPaths = [ ]; bpsync.testPaths = [ ]; bucket = { }; chroma = { propagatedBuildInputs = [ pyacoustid ]; - testPaths = [ ]; wrapperBins = [ chromaprint ]; From 1e645638fbcb684091ee8555a3d51e67186bc179 Mon Sep 17 00:00:00 2001 From: Doron Behar Date: Sun, 12 Apr 2026 10:19:49 +0300 Subject: [PATCH 2/3] python3Packages.beets-alternatives: fix a test failing with beets 2.9.0 --- .../python-modules/beets-alternatives/default.nix | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/pkgs/development/python-modules/beets-alternatives/default.nix b/pkgs/development/python-modules/beets-alternatives/default.nix index 3cfc70696255..ec30ac64bade 100644 --- a/pkgs/development/python-modules/beets-alternatives/default.nix +++ b/pkgs/development/python-modules/beets-alternatives/default.nix @@ -32,6 +32,18 @@ buildPythonPackage rec { hash = "sha256-leZYXf6Oo/jAKbnJbP+rTnuRsh9P1BQXYAbthMNT60A="; }; + patches = [ + # Fixes a failing test, see: + # https://github.com/geigerzaehler/beets-alternatives/issues/212 + (fetchpatch { + url = "https://github.com/geigerzaehler/beets-alternatives/commit/8b75974636897aabcf2ca75fb0987f7beb68f50f.patch"; + hash = "sha256-lIJwuf3UklcJM4m7CO2+aNpPekHXuC5rpPVjK+kb+FQ="; + includes = [ + "test/cli_test.py" + ]; + }) + ]; + build-system = [ hatchling ]; From 9704065dabed871b833b5678cb86878ed60fad63 Mon Sep 17 00:00:00 2001 From: Doron Behar Date: Sun, 12 Apr 2026 12:07:53 +0300 Subject: [PATCH 3/3] python3Packages.beetcamp: 0.24.1 -> 0.24.2 Diff: https://github.com/snejus/beetcamp/compare/0.24.1...0.24.2 --- pkgs/development/python-modules/beetcamp/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/beetcamp/default.nix b/pkgs/development/python-modules/beetcamp/default.nix index b279660c821c..3b8e97d9234a 100644 --- a/pkgs/development/python-modules/beetcamp/default.nix +++ b/pkgs/development/python-modules/beetcamp/default.nix @@ -17,14 +17,14 @@ buildPythonPackage (finalAttrs: { pname = "beetcamp"; - version = "0.24.1"; + version = "0.24.2"; pyproject = true; src = fetchFromGitHub { owner = "snejus"; repo = "beetcamp"; tag = finalAttrs.version; - hash = "sha256-Oe5pZ4gYgqBHuzt9LBe4G14+RYXrNL+L5GIGMMflyMI="; + hash = "sha256-AMHj7rsPAxUUvVg6vri2NnkO9+5NAVwGrWLvNvOtlLs="; }; patches = [