diff options
| author | Martin Weinelt <mweinelt@users.noreply.github.com> | 2026-01-18 01:07:14 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-01-18 01:07:14 +0000 |
| commit | 80f2dc3bafb68e8574f1adcbf982e328c43cfa33 (patch) | |
| tree | 6137a303949167025af97d16121935cd2f623b90 | |
| parent | ce6cc10ae02f4d79295bce8c7b49cc63d356c936 (diff) | |
| parent | 62249532841b99590da98ed23c7240abe1609d95 (diff) | |
music-assistant: 2.7.3 -> 2.7.5, python3Packages.aiosendspin: 1.2.0 -> 2.1.0, python3Packages.py-opensonic: 7.0.4 -> 8.1.1 (#480857)
4 files changed, 16 insertions, 7 deletions
diff --git a/pkgs/by-name/mu/music-assistant/package.nix b/pkgs/by-name/mu/music-assistant/package.nix index 3877924bfac4..fe7ab9c868bb 100644 --- a/pkgs/by-name/mu/music-assistant/package.nix +++ b/pkgs/by-name/mu/music-assistant/package.nix @@ -47,14 +47,14 @@ assert python.pkgs.buildPythonApplication rec { pname = "music-assistant"; - version = "2.7.3"; + version = "2.7.5"; pyproject = true; src = fetchFromGitHub { owner = "music-assistant"; repo = "server"; tag = version; - hash = "sha256-6D3B88wjfVHvNhNrTDOu77eAkherOqdBVafUhht7okA="; + hash = "sha256-iWdOGdmPJO7Pjdn8UjuSOhWnRGBFjmARFsuHmP6IP58="; }; patches = [ diff --git a/pkgs/by-name/mu/music-assistant/providers.nix b/pkgs/by-name/mu/music-assistant/providers.nix index a40106dec226..0ad1828c4768 100644 --- a/pkgs/by-name/mu/music-assistant/providers.nix +++ b/pkgs/by-name/mu/music-assistant/providers.nix @@ -1,7 +1,7 @@ # Do not edit manually, run ./update-providers.py { - version = "2.7.3"; + version = "2.7.5"; providers = { airplay = ps: [ ]; @@ -134,6 +134,7 @@ sendspin = ps: with ps; [ aiosendspin + av ]; siriusxm = ps: [ ]; # missing sxm diff --git a/pkgs/development/python-modules/aiosendspin/default.nix b/pkgs/development/python-modules/aiosendspin/default.nix index 752a8aeaf527..aba70a364c09 100644 --- a/pkgs/development/python-modules/aiosendspin/default.nix +++ b/pkgs/development/python-modules/aiosendspin/default.nix @@ -20,16 +20,22 @@ buildPythonPackage rec { pname = "aiosendspin"; - version = "1.2.0"; + version = "2.1.0"; pyproject = true; src = fetchFromGitHub { owner = "Sendspin"; repo = "aiosendspin"; tag = version; - hash = "sha256-3vTEfXeFqouPswRKST/9U7yg9ah7J9m2KAMoxaBZNR0="; + hash = "sha256-9VhNtfXH2r/cGkscz51PIK2/66pPOGv0S0IpO0wFvO4="; }; + # https://github.com/Sendspin/aiosendspin/blob/1.2.0/pyproject.toml#L7 + postPatch = '' + substituteInPlace pyproject.toml \ + --replace-fail 'version = "0.0.0"' 'version = "${version}"' + ''; + build-system = [ setuptools ]; diff --git a/pkgs/development/python-modules/py-opensonic/default.nix b/pkgs/development/python-modules/py-opensonic/default.nix index 63688ca8b028..5a3f34d650dc 100644 --- a/pkgs/development/python-modules/py-opensonic/default.nix +++ b/pkgs/development/python-modules/py-opensonic/default.nix @@ -3,25 +3,27 @@ buildPythonPackage, fetchFromGitHub, setuptools, + aiohttp, mashumaro, requests, }: buildPythonPackage rec { pname = "py-opensonic"; - version = "7.0.4"; + version = "8.1.1"; pyproject = true; src = fetchFromGitHub { owner = "khers"; repo = "py-opensonic"; tag = "v${version}"; - hash = "sha256-5wsisIfYW+0uh0khUzt9wKFxBf/ZXVsKpNF/Dcrj2wI="; + hash = "sha256-/P/7ytA0YHuJZEq7KQosPBQM2vo6VAss1G8pTIEswJA="; }; build-system = [ setuptools ]; dependencies = [ + aiohttp mashumaro requests ]; |
