home-assistant-custom-components.waste_collection_schedule: 2.0.1 -> 2.1.0 (#337375)

This commit is contained in:
Martin Weinelt 2024-08-26 21:22:02 +02:00 committed by GitHub
commit cf696ce6a5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 6 additions and 3 deletions

View File

@ -655,6 +655,7 @@ in {
ExecReload = "${pkgs.coreutils}/bin/kill -HUP $MAINPID";
User = "hass";
Group = "hass";
WorkingDirectory = cfg.configDir;
Restart = "on-failure";
RestartForceExitStatus = "100";
SuccessExitStatus = "100";

View File

@ -5,26 +5,28 @@
, icalendar
, icalevents
, lxml
, pycryptodome
, recurring-ical-events
}:
buildHomeAssistantComponent rec {
owner = "mampfes";
domain = "waste_collection_schedule";
version = "2.0.1";
version = "2.1.0";
src = fetchFromGitHub {
inherit owner;
repo = "hacs_${domain}";
rev = "refs/tags/${version}";
hash = "sha256-nStfENwlPXPEvK13e8kUpPav6ul6XQO/rViHRHlZpKI=";
hash = "sha256-BRxBZecOg8R4yF1lVEfOWMmuYK4JQ1ORsY4bclVYOow=";
};
propagatedBuildInputs = [
dependencies = [
beautifulsoup4
icalendar
icalevents
lxml
pycryptodome
recurring-ical-events
];