Unverified Commit f1db0801 authored by Martin Weinelt's avatar Martin Weinelt Committed by GitHub
Browse files

music-assistant: fix `pytestCheckPhase` by pinning to `ffmpeg_7`, 2.6.2 -> 2.6.3 (#461660)

parents f2ce9643 25beb978
Loading
Loading
Loading
Loading
+5 −5
Original line number Diff line number Diff line
@@ -2,7 +2,7 @@
  lib,
  python3,
  fetchFromGitHub,
  ffmpeg-headless,
  ffmpeg_7-headless,
  nixosTests,
  replaceVars,
  providers ? [ ],
@@ -47,20 +47,20 @@ assert

python.pkgs.buildPythonApplication rec {
  pname = "music-assistant";
  version = "2.6.2";
  version = "2.6.3";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "music-assistant";
    repo = "server";
    tag = version;
    hash = "sha256-mNSTXMQDG5LiP3Bv9GGy2AO1bQfpFLH8tSCOB/wAzOU=";
    hash = "sha256-vvhynBor5tj5n53Dm3K4ZOkFZ5LM7bFevOCdZjJsbbM=";
  };

  patches = [
    (replaceVars ./ffmpeg.patch {
      ffmpeg = "${lib.getBin ffmpeg-headless}/bin/ffmpeg";
      ffprobe = "${lib.getBin ffmpeg-headless}/bin/ffprobe";
      ffmpeg = "${lib.getBin ffmpeg_7-headless}/bin/ffmpeg";
      ffprobe = "${lib.getBin ffmpeg_7-headless}/bin/ffprobe";
    })

    # Look up librespot from PATH at runtime
+2 −2
Original line number Diff line number Diff line
# Do not edit manually, run ./update-providers.py

{
  version = "2.6.2";
  version = "2.6.3";
  providers = {
    airplay = ps: [
    ];
@@ -150,6 +150,6 @@
        duration-parser
        yt-dlp
        ytmusicapi
      ];
      ]; # missing deno
  };
}