Unverified Commit ca94e852 authored by Martin Weinelt's avatar Martin Weinelt
Browse files
parent 50703e0c
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -6,12 +6,12 @@

buildPythonPackage rec {
  pname = "music-assistant-frontend";
  version = "2.7.0";
  version = "2.8.7";
  pyproject = true;

  src = fetchPypi {
    inherit pname version;
    hash = "sha256-KrloxxdqIwQ5NsxAGm28D5StHnw9LTqDDtcchD5X5Qk=";
    hash = "sha256-L7ASmYtJja+Hy4MnGrNWIwSjvhfq2iXfWm4gGKAnEec=";
  };

  postPatch = ''
+2 −15
Original line number Diff line number Diff line
@@ -11,19 +11,6 @@ let
  python = python3.override {
    self = python;
    packageOverrides = self: super: {
      aiojellyfin = super.aiojellyfin.overridePythonAttrs rec {
        version = "0.9.2";

        src = fetchFromGitHub {
          owner = "jc2k";
          repo = "aiojellyfin";
          rev = "refs/tags/v${version}";
          hash = "sha256-q+b1tKr46qq3PULPkCaQk2VoC1aaNxPK/E1Kj4PABfI=";
        };

        doCheck = false;
      };

      music-assistant-frontend = self.callPackage ./frontend.nix { };
    };
  };
@@ -37,14 +24,14 @@ in

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

  src = fetchFromGitHub {
    owner = "music-assistant";
    repo = "server";
    rev = "refs/tags/${version}";
    hash = "sha256-ALsl2xfAFYejDEhR5/ZpeIxoHFgvz471tb4OP5xQAUE=";
    hash = "sha256-GQvbkdyybJ3X09fCKwu+iZvq7UdHIMzCpYjenGg/zQA=";
  };

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

{
  version = "2.1.1";
  version = "2.2.0";
  providers = {
    airplay = [
    ];
@@ -61,7 +61,10 @@
    ];
    soundcloud = [
    ]; # missing soundcloudpy
    spotify = [
    spotify = ps: with ps; [
      pkce
    ];
    template_player_provider = [
    ];
    test = [
    ];