mirror of
https://github.com/CHN-beta/nixpkgs.git
synced 2026-01-12 02:40:31 +08:00
35 lines
768 B
Nix
35 lines
768 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
setuptools,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "knx-frontend";
|
|
version = "2025.12.30.151231";
|
|
pyproject = true;
|
|
|
|
# TODO: source build, uses yarn.lock
|
|
src = fetchPypi {
|
|
pname = "knx_frontend";
|
|
inherit version;
|
|
hash = "sha256-3KRufDLB1p+k2pmY9Mivvd2DmxWCZHZSIPhUZImKZIY=";
|
|
};
|
|
|
|
build-system = [ setuptools ];
|
|
|
|
pythonImportsCheck = [ "knx_frontend" ];
|
|
|
|
# no tests
|
|
doCheck = false;
|
|
|
|
meta = {
|
|
changelog = "https://github.com/XKNX/knx-frontend/releases/tag/${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 ];
|
|
};
|
|
}
|