depot/pkgs/servers/home-assistant/custom-components/waste_collection_schedule/package.nix

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

41 lines
960 B
Nix
Raw Normal View History

{ 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;
};
}