555cd8a8f9
GitOrigin-RevId: 5633bcff0c6162b9e4b5f1264264611e950c8ec7
39 lines
881 B
Nix
39 lines
881 B
Nix
{
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
lib,
|
|
setuptools,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "lcn-frontend";
|
|
version = "0.1.7";
|
|
pyproject = true;
|
|
|
|
src = fetchPypi {
|
|
pname = "lcn_frontend";
|
|
inherit version;
|
|
hash = "sha256-S/7NUduAiekQ5CDOw8JRCTO9mbvLW6MmB/n8iQQPkok=";
|
|
};
|
|
|
|
postPatch = ''
|
|
substituteInPlace pyproject.toml \
|
|
--replace-fail "setuptools~=68.0" setuptools \
|
|
--replace-fail "wheel~=0.40.0" wheel
|
|
'';
|
|
|
|
build-system = [ setuptools ];
|
|
|
|
pythonImportsCheck = [ "lcn_frontend" ];
|
|
|
|
# upstream has no tests
|
|
doCheck = false;
|
|
|
|
meta = {
|
|
changelog = "https://github.com/alengwenus/lcn-frontend/releases/tag/${version}";
|
|
description = "LCN panel for Home Assistant";
|
|
homepage = "https://github.com/alengwenus/lcn-frontend";
|
|
license = lib.licenses.mit;
|
|
maintainers = with lib.maintainers; [ dotlambda ];
|
|
};
|
|
}
|