{ lib, buildPythonPackage, fetchPypi, setuptools, }: buildPythonPackage (finalAttrs: { pname = "knx-frontend"; version = "2026.8.2.133643"; pyproject = true; # TODO: source build, uses yarn.lock src = fetchPypi { pname = "knx_frontend"; inherit (finalAttrs) version; hash = "sha256-X1/nLJ53HYAB5XUPCCAwF0R9TnGbrTpmjmG2gT1dxNY="; }; build-system = [ setuptools ]; pythonImportsCheck = [ "knx_frontend" ]; # no tests doCheck = false; meta = { changelog = "https://github.com/XKNX/knx-frontend/releases/tag/${finalAttrs.version}"; description = "Home Assistant Panel for managing the KNX integration"; homepage = "https://github.com/XKNX/knx-frontend"; license = lib.licenses.mit; maintainers = with lib.maintainers; [ hexa ]; }; })