diff --git a/pkgs/by-name/mu/music-assistant/package.nix b/pkgs/by-name/mu/music-assistant/package.nix index 288674181bd39..26783526f7eb6 100644 --- a/pkgs/by-name/mu/music-assistant/package.nix +++ b/pkgs/by-name/mu/music-assistant/package.nix @@ -101,7 +101,6 @@ python.pkgs.buildPythonApplication rec { pythonRelaxDeps = [ "aiohttp" "aiosqlite" - "aiovban" # PyPi and GitHub versioning is out of sync "certifi" "colorlog" "cryptography" diff --git a/pkgs/development/python-modules/aiovban/default.nix b/pkgs/development/python-modules/aiovban/default.nix index 729f3aa3e8840..67440599968de 100644 --- a/pkgs/development/python-modules/aiovban/default.nix +++ b/pkgs/development/python-modules/aiovban/default.nix @@ -7,17 +7,16 @@ music-assistant, }: -buildPythonPackage { +buildPythonPackage (finalAttrs: { pname = "aiovban"; - version = "0.6.2"; + version = "0.7.0"; pyproject = true; src = fetchFromGitHub { owner = "wmbest2"; repo = "aiovban"; - # https://github.com/wmbest2/aiovban/issues/2 - rev = "cdcf1ef3328493e600b4e8725a6071c0d180b36a"; - hash = "sha256-w+pA3225mdPms/PpnJYKZYe6YHn0WMf83LupExgjJZ8="; + tag = "v${finalAttrs.version}"; + hash = "sha256-0mhpmpsV0zSOWbhrPF9bfR9xAtJe6X57guWDZWMH6f0="; }; build-system = [ setuptools ]; @@ -29,9 +28,10 @@ buildPythonPackage { ]; meta = { + changelog = "https://github.com/wmbest2/aiovban/releases/tag/${finalAttrs.src.tag}"; description = "Asyncio VBAN Protocol Wrapper"; homepage = "https://github.com/wmbest2/aiovban"; license = lib.licenses.mit; inherit (music-assistant.meta) maintainers; }; -} +})