Commit 64a74513 authored by Robert Schütz's avatar Robert Schütz
Browse files
parent eedcdb02
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -15,14 +15,14 @@

buildPythonPackage rec {
  pname = "music-assistant-client";
  version = "1.2.4";
  version = "1.3.2";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "music-assistant";
    repo = "client";
    tag = version;
    hash = "sha256-0NgV/xa8jF+j+oIZllgT7UI4MRsP3vTDarluLgtSZwI=";
    hash = "sha256-7u7P3uYFxx1UFzPIOgo0fCEEJrEEdBbBE7INhinkgLQ=";
  };

  postPatch = ''
@@ -47,7 +47,7 @@ buildPythonPackage rec {
  meta = {
    description = "Python client to interact with the Music Assistant Server API";
    homepage = "https://github.com/music-assistant/client";
    changelog = "https://github.com/music-assistant/client/blob/${src.tag}/CHANGELOG.md";
    changelog = "https://github.com/music-assistant/client/releases/tag/${src.tag}";
    license = lib.licenses.asl20;
    maintainers = [ ];
  };