python312Packages.lcn-frontend: init at 0.1.6
This commit is contained in:
@@ -0,0 +1,39 @@
|
||||
{
|
||||
buildPythonPackage,
|
||||
fetchPypi,
|
||||
lib,
|
||||
setuptools,
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "lcn-frontend";
|
||||
version = "0.1.6";
|
||||
pyproject = true;
|
||||
|
||||
src = fetchPypi {
|
||||
pname = "lcn_frontend";
|
||||
inherit version;
|
||||
hash = "sha256-bOR2BFYHZjRVhlH72ljqp4WKtWdqBkzZNyrmtuIzmIM=";
|
||||
};
|
||||
|
||||
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 ];
|
||||
};
|
||||
}
|
||||
@@ -6875,6 +6875,8 @@ self: super: with self; {
|
||||
|
||||
lcgit = callPackage ../development/python-modules/lcgit { };
|
||||
|
||||
lcn-frontend = callPackage ../development/python-modules/lcn-frontend { };
|
||||
|
||||
lcov-cobertura = callPackage ../development/python-modules/lcov-cobertura { };
|
||||
|
||||
ld2410-ble = callPackage ../development/python-modules/ld2410-ble { };
|
||||
|
||||
Reference in New Issue
Block a user