python3Packages.aiovban: init at 0.6.2

New dependency for music-assistant in 2.7.0.
This commit is contained in:
Martin Weinelt
2025-12-20 00:23:29 +01:00
parent 9dc92f5bef
commit e2011db905
2 changed files with 39 additions and 0 deletions
@@ -0,0 +1,37 @@
{
lib,
buildPythonPackage,
fetchFromGitHub,
setuptools,
pytestCheckHook,
music-assistant,
}:
buildPythonPackage {
pname = "aiovban";
version = "0.6.2";
pyproject = true;
src = fetchFromGitHub {
owner = "wmbest2";
repo = "aiovban";
# https://github.com/wmbest2/aiovban/issues/2
rev = "cdcf1ef3328493e600b4e8725a6071c0d180b36a";
hash = "sha256-w+pA3225mdPms/PpnJYKZYe6YHn0WMf83LupExgjJZ8=";
};
build-system = [ setuptools ];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [
"aiovban"
];
meta = {
description = "Asyncio VBAN Protocol Wrapper";
homepage = "https://github.com/wmbest2/aiovban";
license = lib.licenses.mit;
inherit (music-assistant.meta) maintainers;
};
}
+2
View File
@@ -538,6 +538,8 @@ self: super: with self; {
aiousbwatcher = callPackage ../development/python-modules/aiousbwatcher { };
aiovban = callPackage ../development/python-modules/aiovban { };
aiovlc = callPackage ../development/python-modules/aiovlc { };
aiovodafone = callPackage ../development/python-modules/aiovodafone { };