python3Packages.aiovban: 0.6.2 -> 0.7.0

https://github.com/wmbest2/aiovban/releases/tag/v0.7.0
This commit is contained in:
Martin Weinelt
2026-02-07 18:13:36 +01:00
parent e5c1c34026
commit bb60f3dbe2
2 changed files with 6 additions and 7 deletions
@@ -101,7 +101,6 @@ python.pkgs.buildPythonApplication rec {
pythonRelaxDeps = [
"aiohttp"
"aiosqlite"
"aiovban" # PyPi and GitHub versioning is out of sync
"certifi"
"colorlog"
"cryptography"
@@ -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;
};
}
})