Unverified Commit 06176365 authored by Michal Koutenský's avatar Michal Koutenský Committed by GitHub
Browse files

music-assistant: 2.4.4 -> 2.5.0 (#395790)

parent 649e4d40
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -7,12 +7,12 @@

buildPythonPackage rec {
  pname = "music-assistant-frontend";
  version = "2.12.2";
  version = "2.14.8";
  pyproject = true;

  src = fetchPypi {
    inherit pname version;
    hash = "sha256-aa400lMs6zxC5QhZS27gFUWpRanyC3sFi815iDEiSPk=";
    hash = "sha256-YUir/YBBbggsQUh5b6qSG5fpAa25jJmgcSsf0EZ8rhw=";
  };

  postPatch = ''
+4 −4
Original line number Diff line number Diff line
@@ -16,13 +16,13 @@ let
      music-assistant-frontend = self.callPackage ./frontend.nix { };

      music-assistant-models = super.music-assistant-models.overridePythonAttrs (oldAttrs: rec {
        version = "1.1.34";
        version = "1.1.45";

        src = fetchFromGitHub {
          owner = "music-assistant";
          repo = "models";
          tag = version;
          hash = "sha256-UxokPUnYET1XyRok0FH7e8G3RpCMvOigY4huw6Tfllo=";
          hash = "sha256-R1KkMe9dVl5J1DjDsFhSYVebpiqBkXZSqkLrd7T8gFg=";
        };

        postPatch = ''
@@ -44,14 +44,14 @@ in

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

  src = fetchFromGitHub {
    owner = "music-assistant";
    repo = "server";
    tag = version;
    hash = "sha256-rxXEsR4EfJZp3OFGHcSRaJp1egt2OT15P8V35v35KmU=";
    hash = "sha256-yugtL3dCuGb2OSTy49V4mil9EnfACcGrYCA1rW/lo+4=";
  };

  patches = [
+22 −11
Original line number Diff line number Diff line
# Do not edit manually, run ./update-providers.py

{
  version = "2.4.4";
  version = "2.5.0";
  providers = {
    airplay = ps: [
    ];
@@ -21,6 +21,8 @@
      ];
    builtin = ps: [
    ];
    builtin_player = ps: [
    ];
    chromecast =
      ps: with ps; [
        pychromecast
@@ -44,6 +46,8 @@
      ps: with ps; [
        python-fullykiosk
      ];
    gpodder = ps: [
    ];
    hass =
      ps: with ps; [
        hass-client
@@ -52,10 +56,18 @@
    ];
    ibroadcast = ps: [
    ]; # missing ibroadcastaio
    itunes_podcasts = ps: [
    ];
    jellyfin =
      ps: with ps; [
        aiojellyfin
      ];
    lastfm_scrobble =
      ps: with ps; [
        pylast
      ];
    listenbrainz_scrobble = ps: [
    ]; # missing liblistenbrainz
    musicbrainz = ps: [
    ];
    opensubsonic =
@@ -68,9 +80,7 @@
      ps: with ps; [
        plexapi
      ];
    podcastfeed =
      ps: with ps; [
        podcastparser
    podcastfeed = ps: [
    ];
    qobuz = ps: [
    ];
@@ -80,14 +90,11 @@
      ];
    siriusxm = ps: [
    ]; # missing sxm
    slimproto =
      ps: with ps; [
        aioslimproto
      ];
    snapcast =
      ps: with ps; [
        bidict
        snapcast
        websocket-client
      ];
    sonos =
      ps: with ps; [
@@ -106,6 +113,10 @@
      ];
    spotify_connect = ps: [
    ];
    squeezelite =
      ps: with ps; [
        aioslimproto
      ];
    template_player_provider = ps: [
    ];
    test = ps: [
@@ -114,7 +125,7 @@
    ];
    tidal =
      ps: with ps; [
        tidalapi
        pkce
      ];
    tunein = ps: [
    ];
@@ -123,6 +134,6 @@
        duration-parser
        yt-dlp
        ytmusicapi
      ];
      ]; # missing bgutil-ytdlp-pot-provider
  };
}