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

music-assistant: 2.5.0 -> 2.5.2 (#405770)

parents c46073e7 8ea079b9
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -69,6 +69,9 @@ in
      description = "Music Assistant";
      documentation = [ "https://music-assistant.io" ];

      after = [ "network-online.target" ];
      wants = [ "network-online.target" ];

      wantedBy = [ "multi-user.target" ];

      environment = {
+2 −2
Original line number Diff line number Diff line
@@ -7,12 +7,12 @@

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

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

  postPatch = ''
+2 −2
Original line number Diff line number Diff line
@@ -48,14 +48,14 @@ assert

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

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

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

{
  version = "2.5.0";
  version = "2.5.2";
  providers = {
    airplay = ps: [
    ];
+2 −2
Original line number Diff line number Diff line
@@ -10,14 +10,14 @@

buildPythonPackage rec {
  pname = "aioaudiobookshelf";
  version = "0.1.6";
  version = "0.1.7";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "music-assistant";
    repo = "aioaudiobookshelf";
    tag = version;
    hash = "sha256-DvV/mAs/oN248glbgKymTNLx+o+pY/6ZqrdRRgYWstw=";
    hash = "sha256-sHRyrh+FwR9Vc9LVOA069iH5Wg56Ye4e9bOxdTR6PPs=";
  };

  build-system = [
Loading