beets: 2.3.0 -> 2.3.1 (#407003)

authored by Doron Behar and committed by GitHub 7a0cfca6 7d14281d

+5 -12
-3
pkgs/tools/audio/beets/builtin-plugins.nix
··· 171 171 flask-cors 172 172 ]; 173 173 zero = { }; 174 - } 175 - # NOTE: There will be no need for this conditional once beets is updated. 176 - // lib.optionalAttrs (lib.versionAtLeast version "2.2.0-unstable-2025-03-12") { 177 174 _typing = { 178 175 testPaths = [ ]; 179 176 };
-4
pkgs/tools/audio/beets/common.nix
··· 101 101 pyyaml 102 102 unidecode 103 103 typing-extensions 104 - ] 105 - ++ lib.optionals (lib.versionAtLeast version "2.2.0-unstable-2025-03-12") [ 106 104 lap 107 105 ] 108 106 ++ (concatMap (p: p.propagatedBuildInputs) (attrValues enabledPlugins)); ··· 151 149 mock 152 150 rarfile 153 151 responses 154 - ] 155 - ++ lib.optionals (lib.versionAtLeast version "2.2.0-unstable-2025-03-12") [ 156 152 requests-mock 157 153 ] 158 154 ++ [
+5 -5
pkgs/tools/audio/beets/default.nix
··· 31 31 32 32 beets-stable = callPackage ./common.nix rec { 33 33 inherit python3Packages extraPatches; 34 - version = "2.3.0"; 34 + version = "2.3.1"; 35 35 src = fetchFromGitHub { 36 36 owner = "beetbox"; 37 37 repo = "beets"; 38 38 tag = "v${version}"; 39 - hash = "sha256-mH3m2O+q5Ys9DJD3ulmhViyf/VPEpHevjmNerVe327s="; 39 + hash = "sha256-INxL2XDn8kwRYYcZATv/NdLmAtfQvxVDWKB1OYo8dxY="; 40 40 }; 41 41 }; 42 42 ··· 44 44 45 45 beets-unstable = callPackage ./common.nix { 46 46 inherit python3Packages; 47 - version = "2.3.0"; 47 + version = "2.3.1"; 48 48 src = fetchFromGitHub { 49 49 owner = "beetbox"; 50 50 repo = "beets"; 51 - rev = "250b0da900c095a09bedc1a0717381010c01a3c6"; 52 - hash = "sha256-mH3m2O+q5Ys9DJD3ulmhViyf/VPEpHevjmNerVe327s="; 51 + rev = "d487d675b9115672c484eab8a6729b1f0fd24b68"; 52 + hash = "sha256-INxL2XDn8kwRYYcZATv/NdLmAtfQvxVDWKB1OYo8dxY="; 53 53 }; 54 54 }; 55 55