From 6a13d037952afd3d037199bb47543aa9d59ba9cb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sandro=20J=C3=A4ckel?= Date: Fri, 27 Mar 2026 00:14:13 +0100 Subject: [PATCH] music-assistant: require at least upstream package versions instead of relaxing almost all deps --- pkgs/by-name/mu/music-assistant/package.nix | 21 ++------------------- 1 file changed, 2 insertions(+), 19 deletions(-) diff --git a/pkgs/by-name/mu/music-assistant/package.nix b/pkgs/by-name/mu/music-assistant/package.nix index bf28c26fbe79..11bdffe8ba1e 100644 --- a/pkgs/by-name/mu/music-assistant/package.nix +++ b/pkgs/by-name/mu/music-assistant/package.nix @@ -86,7 +86,8 @@ python.pkgs.buildPythonApplication rec { postPatch = '' substituteInPlace pyproject.toml \ - --replace-fail "0.0.0" "${version}" + --replace-fail "0.0.0" "${version}" \ + --replace-fail "==" ">=" # get-mac is a deprecated alias of getmac since 2018 substituteInPlace pyproject.toml \ @@ -108,24 +109,6 @@ python.pkgs.buildPythonApplication rec { setuptools ]; - pythonRelaxDeps = [ - "aiofiles" - "aiohttp" - "aiosqlite" - "certifi" - "colorlog" - "cryptography" - "getmac" - "mashumaro" - "numpy" - "orjson" - "pillow" - "podcastparser" - "pycares" - "xmltodict" - "zeroconf" - ]; - pythonRemoveDeps = [ # no runtime dependency resolution "uv"