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

authored by Martin Weinelt and committed by GitHub f1405cac 8c34fc8c

+14 -4
+14 -4
pkgs/servers/home-assistant/custom-components/moonraker/package.nix
··· 1 { 2 lib, 3 fetchFromGitHub, 4 - buildHomeAssistantComponent, 5 moonraker-api, 6 }: 7 8 buildHomeAssistantComponent rec { 9 owner = "marcolivierarsenault"; 10 domain = "moonraker"; 11 - version = "1.8.0"; 12 13 src = fetchFromGitHub { 14 owner = "marcolivierarsenault"; 15 repo = "moonraker-home-assistant"; 16 tag = version; 17 - hash = "sha256-FamZ4MvfWzynTpAKCMnABsX6h1+nB4jAOkO386J02OM="; 18 }; 19 20 dependencies = [ 21 moonraker-api 22 ]; 23 24 #skip phases with nothing to do 25 dontConfigure = true; 26 - doCheck = false; 27 28 meta = with lib; { 29 changelog = "https://github.com/marcolivierarsenault/moonraker-home-assistant/releases/tag/${version}";
··· 1 { 2 lib, 3 + buildHomeAssistantComponent, 4 fetchFromGitHub, 5 + pytestCheckHook, 6 + pytest-cov-stub, 7 + pytest-homeassistant-custom-component, 8 + 9 + # dependency 10 moonraker-api, 11 }: 12 13 buildHomeAssistantComponent rec { 14 owner = "marcolivierarsenault"; 15 domain = "moonraker"; 16 + version = "1.10.0"; 17 18 src = fetchFromGitHub { 19 owner = "marcolivierarsenault"; 20 repo = "moonraker-home-assistant"; 21 tag = version; 22 + hash = "sha256-U4vjWFUZlxRPIrK9YXuYzPCMAjdQGoPXewmDessWh+c="; 23 }; 24 25 dependencies = [ 26 moonraker-api 27 ]; 28 29 + nativeCheckInputs = [ 30 + pytest-homeassistant-custom-component 31 + pytest-cov-stub 32 + pytestCheckHook 33 + ]; 34 + 35 #skip phases with nothing to do 36 dontConfigure = true; 37 38 meta = with lib; { 39 changelog = "https://github.com/marcolivierarsenault/moonraker-home-assistant/releases/tag/${version}";