c7cb07f092
GitOrigin-RevId: 1536926ef5621b09bba54035ae2bb6d806d72ac8
37 lines
784 B
Nix
37 lines
784 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, setuptools
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "knx-frontend";
|
|
version = "2024.1.20.105944";
|
|
format = "pyproject";
|
|
|
|
# TODO: source build, uses yarn.lock
|
|
src = fetchPypi {
|
|
pname = "knx_frontend";
|
|
inherit version;
|
|
hash = "sha256-5u+BaZjbGpIpQd3k+u5NC099TQuiwGKdE/EoIWny01I=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
setuptools
|
|
];
|
|
|
|
pythonImportsCheck = [
|
|
"knx_frontend"
|
|
];
|
|
|
|
# no tests
|
|
doCheck = false;
|
|
|
|
meta = with lib; {
|
|
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 = licenses.mit;
|
|
maintainers = with maintainers; [ hexa ];
|
|
};
|
|
}
|