lol

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

authored by

Martin Weinelt and committed by
GitHub
0b489d35 c46073e7

+12 -9
+3
nixos/modules/services/audio/music-assistant.nix
··· 69 69 description = "Music Assistant"; 70 70 documentation = [ "https://music-assistant.io" ]; 71 71 72 + after = [ "network-online.target" ]; 73 + wants = [ "network-online.target" ]; 74 + 72 75 wantedBy = [ "multi-user.target" ]; 73 76 74 77 environment = {
+2 -2
pkgs/by-name/mu/music-assistant/frontend.nix
··· 7 7 8 8 buildPythonPackage rec { 9 9 pname = "music-assistant-frontend"; 10 - version = "2.14.8"; 10 + version = "2.14.9"; 11 11 pyproject = true; 12 12 13 13 src = fetchPypi { 14 14 inherit pname version; 15 - hash = "sha256-YUir/YBBbggsQUh5b6qSG5fpAa25jJmgcSsf0EZ8rhw="; 15 + hash = "sha256-UEGRZBegoAnls5xAyVgjisD0B8nu8kXp1XHI4A114lw="; 16 16 }; 17 17 18 18 postPatch = ''
+2 -2
pkgs/by-name/mu/music-assistant/package.nix
··· 48 48 49 49 python.pkgs.buildPythonApplication rec { 50 50 pname = "music-assistant"; 51 - version = "2.5.0"; 51 + version = "2.5.2"; 52 52 pyproject = true; 53 53 54 54 src = fetchFromGitHub { 55 55 owner = "music-assistant"; 56 56 repo = "server"; 57 57 tag = version; 58 - hash = "sha256-yugtL3dCuGb2OSTy49V4mil9EnfACcGrYCA1rW/lo+4="; 58 + hash = "sha256-RkbU2MqQ7XSv7f6gvgS0AZ8jy63fUAomC41dEk8qyOI="; 59 59 }; 60 60 61 61 patches = [
+1 -1
pkgs/by-name/mu/music-assistant/providers.nix
··· 1 1 # Do not edit manually, run ./update-providers.py 2 2 3 3 { 4 - version = "2.5.0"; 4 + version = "2.5.2"; 5 5 providers = { 6 6 airplay = ps: [ 7 7 ];
+2 -2
pkgs/development/python-modules/aioaudiobookshelf/default.nix
··· 10 10 11 11 buildPythonPackage rec { 12 12 pname = "aioaudiobookshelf"; 13 - version = "0.1.6"; 13 + version = "0.1.7"; 14 14 pyproject = true; 15 15 16 16 src = fetchFromGitHub { 17 17 owner = "music-assistant"; 18 18 repo = "aioaudiobookshelf"; 19 19 tag = version; 20 - hash = "sha256-DvV/mAs/oN248glbgKymTNLx+o+pY/6ZqrdRRgYWstw="; 20 + hash = "sha256-sHRyrh+FwR9Vc9LVOA069iH5Wg56Ye4e9bOxdTR6PPs="; 21 21 }; 22 22 23 23 build-system = [
+2 -2
pkgs/development/python-modules/plexapi/default.nix
··· 11 11 12 12 buildPythonPackage rec { 13 13 pname = "plexapi"; 14 - version = "4.16.1"; 14 + version = "4.17.0"; 15 15 pyproject = true; 16 16 17 17 disabled = pythonOlder "3.8"; ··· 20 20 owner = "pkkid"; 21 21 repo = "python-plexapi"; 22 22 tag = version; 23 - hash = "sha256-ncinm2wtFx2lzsDTsK+D4rz4hVhcwcK2VkL6osNUftY="; 23 + hash = "sha256-/CYWoEHmev5e5ZmlaBms1zclRwzvugAuG2JXzK9MeZA="; 24 24 }; 25 25 26 26 build-system = [ setuptools ];