Files
nixpkgs/pkgs/development/python-modules/lcn-frontend/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

34 lines
722 B
Nix
Raw Normal View History

2025-10-09 14:15:47 +02:00
{
buildPythonPackage,
fetchPypi,
lib,
setuptools,
}:
buildPythonPackage rec {
pname = "lcn-frontend";
version = "0.2.7";
pyproject = true;
src = fetchPypi {
pname = "lcn_frontend";
inherit version;
hash = "sha256-YymktD+w07A97KNmpdonrFrTf8w5J7FuDg4k1lIwxC8=";
};
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 ];
};
}