Luke Granger-Brown
57725ef3ec
git-subtree-dir: third_party/nixpkgs git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
40 lines
960 B
Nix
40 lines
960 B
Nix
{ lib
|
|
, buildHomeAssistantComponent
|
|
, fetchFromGitHub
|
|
, beautifulsoup4
|
|
, icalendar
|
|
, icalevents
|
|
, lxml
|
|
, pycryptodome
|
|
, recurring-ical-events
|
|
}:
|
|
|
|
buildHomeAssistantComponent rec {
|
|
owner = "mampfes";
|
|
domain = "waste_collection_schedule";
|
|
version = "2.4.0";
|
|
|
|
src = fetchFromGitHub {
|
|
inherit owner;
|
|
repo = "hacs_waste_collection_schedule";
|
|
rev = "refs/tags/${version}";
|
|
hash = "sha256-2WUwUifRCIhz+QmhpY8VGx/USEImpPX0K511xDJWP1I=";
|
|
};
|
|
|
|
dependencies = [
|
|
beautifulsoup4
|
|
icalendar
|
|
icalevents
|
|
lxml
|
|
pycryptodome
|
|
recurring-ical-events
|
|
];
|
|
|
|
meta = with lib; {
|
|
changelog = "https://github.com/mampfes/hacs_waste_collection_schedule/releases/tag/${version}";
|
|
description = "Home Assistant integration framework for (garbage collection) schedules";
|
|
homepage = "https://github.com/mampfes/hacs_waste_collection_schedule";
|
|
maintainers = with maintainers; [jamiemagee];
|
|
license = licenses.mit;
|
|
};
|
|
}
|