home-assistant-custom-components.moonraker: 1.8.0 -> 1.10.0 (#425462)

This commit is contained in:
Martin Weinelt 2025-07-18 01:56:21 +02:00 committed by GitHub
commit f1405cacdc
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,29 +1,39 @@
{
lib,
fetchFromGitHub,
buildHomeAssistantComponent,
fetchFromGitHub,
pytestCheckHook,
pytest-cov-stub,
pytest-homeassistant-custom-component,
# dependency
moonraker-api,
}:
buildHomeAssistantComponent rec {
owner = "marcolivierarsenault";
domain = "moonraker";
version = "1.8.0";
version = "1.10.0";
src = fetchFromGitHub {
owner = "marcolivierarsenault";
repo = "moonraker-home-assistant";
tag = version;
hash = "sha256-FamZ4MvfWzynTpAKCMnABsX6h1+nB4jAOkO386J02OM=";
hash = "sha256-U4vjWFUZlxRPIrK9YXuYzPCMAjdQGoPXewmDessWh+c=";
};
dependencies = [
moonraker-api
];
nativeCheckInputs = [
pytest-homeassistant-custom-component
pytest-cov-stub
pytestCheckHook
];
#skip phases with nothing to do
dontConfigure = true;
doCheck = false;
meta = with lib; {
changelog = "https://github.com/marcolivierarsenault/moonraker-home-assistant/releases/tag/${version}";