mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-06-28 13:05:16 +00:00
35 lines
800 B
Nix
35 lines
800 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
setuptools,
|
|
}:
|
|
|
|
buildPythonPackage (finalAttrs: {
|
|
pname = "knx-frontend";
|
|
version = "2026.6.1.213802";
|
|
pyproject = true;
|
|
|
|
# TODO: source build, uses yarn.lock
|
|
src = fetchPypi {
|
|
pname = "knx_frontend";
|
|
inherit (finalAttrs) version;
|
|
hash = "sha256-P3a2dPAaowvYzrUit0MAdNPjcTECkE8juMBAapLYtFs=";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
})
|