nixpkgs/pkgs/servers/home-assistant/custom-components
2024-08-25 17:41:06 -07:00
..
adaptive_lighting home-assistant-custom-components.adaptive_lighting: 1.19.1 -> 1.22.0 2024-06-15 22:34:07 +01:00
alarmo home-assistant-custom-components.alarmo: init at 1.10.4 2024-07-14 14:24:58 -04:00
auth-header
awtrix home-assistant-custom-components.awtrix: init at unstable-2024-05-26 2024-06-22 17:28:58 +02:00
better_thermostat
dwd home-assistant-custom-components.dwd: init at 2024.4.0 2024-08-17 17:01:32 +02:00
elevenlabs_tts home-assistant-custom-components.elevenlabs_tts: init at 2.3.0 2024-07-14 14:11:13 -04:00
emporia_vue
epex_spot home-assistant-custom-component-epex_spot: 2.3.7 -> 2.3.8 2024-07-01 00:59:03 +02:00
frigate home-assistant-custom-components.frigate: 5.2.0 -> 5.3.0 2024-08-01 03:16:21 +02:00
govee-lan home-assistant-custom-components.govee-lan: tests are broken 2024-07-22 08:07:59 -07:00
gpio
homematicip_local home-assistant-custom-components.homematicip_local: 1.63.0 -> 1.64.0 2024-08-07 12:52:39 -07:00
indego home-assistant-custom-components.indego: 5.7.2 -> 5.7.4 2024-07-23 01:48:40 +02:00
local_luftdaten
localtuya treewide: Remove indefinite article from meta.description 2024-06-09 23:07:45 +02:00
mass home-assistant-custom-components.mass: 2024.6.2 -> 2024.8.1 2024-08-23 04:33:37 +02:00
midea_ac_lan
midea-air-appliances-lan
miele treewide: Remove indefinite article from meta.description 2024-06-09 23:07:45 +02:00
moonraker home-assistant-custom-components.moonraker: 1.2.2 -> 1.2.3 2024-08-15 17:28:45 +02:00
ntfy
omnik_inverter treewide: Remove the definite article from meta.description 2024-06-09 23:08:46 +02:00
prometheus_sensor
samsungtv-smart treewide: remove trailing space in description 2024-07-26 03:38:50 +02:00
sensi
smartir
smartthinq-sensors home-assistant-custom-components.smartthinq-sensors: 0.39.0 -> 0.39.2 2024-06-06 12:40:46 +03:00
somweb home-assistant-custom-components.somweb: init at 1.1.0 2024-08-20 14:14:02 +02:00
spook home-assistant-custom-components.spook: init at 3.0.1 2024-06-23 22:03:37 +02:00
tuya_local home-assistant-custom-components.tuya_local: 2024.5.2 -> 2024.6.0 2024-06-12 23:20:54 +02:00
volkswagen_we_connect_id home-assistant-custom-components.volkswagen_we_connect_id: init at 0.2.0 2024-08-10 09:19:41 -07:00
volkswagencarnet home-assistant-custom-components.volkswagencarnet: init at 5.0.3 2024-07-22 08:14:16 -07:00
waste_collection_schedule home-assistant-custom-components.waste_collection_schedule: 2.0.1 -> 2.1.0 2024-08-25 17:41:06 -07:00
xiaomi_gateway3
xiaomi_miot home-assistant-custom-components.xiaomi_miot: 0.7.19 -> 0.7.20 2024-08-23 04:55:01 +00:00
yassi treewide: Remove indefinite article from meta.description 2024-06-09 23:07:45 +02:00
default.nix Merge pull request #332967 from uvNikita/somweb 2024-08-20 15:05:59 +02:00
README.md home-assistant-custom-components: fix typo 2024-07-22 08:14:17 -07:00

Packaging guidelines

buildHomeAssistantComponent

Custom components should be packaged using the buildHomeAssistantComponent function, that is provided at top-level. It builds upon buildPythonPackage but uses a custom install and check phase.

Python runtime dependencies can be directly consumed as unqualified function arguments. Pass them into propagatedBuildInputs, for them to be available to Home Assistant.

Out-of-tree components need to use Python packages from home-assistant.python.pkgs as to not introduce conflicting package versions into the Python environment.

Example Boilerplate:

{ lib
, buildHomeAssistantComponent
, fetchFromGitHub
}:

buildHomeAssistantComponent {
  # owner, domain, version

  src = fetchFromGithub {
    # owner, repo, rev, hash
  };

  propagatedBuildInputs = [
    # python requirements, as specified in manifest.json
  ];

  meta = with lib; {
    # changelog, description, homepage, license, maintainers
  };
}

Package attribute

The attribute name must reflect the domain as seen in the manifest.json, which in turn will match the python module name below in the custom_components/ directory.

Example:

The project mweinelt/ha-prometheus-sensor would receive the attribute name "prometheus_sensor", because both domain in the manifest.json as well as the module name are prometheus_sensor.

Package name

The pname attribute is a composition of both owner and domain.

Don't set pname, set owner and domain instead.

Exposing the domain attribute separately allows checking for conflicting components at eval time.

Manifest check

The buildHomeAssistantComponent builder uses a hook to check whether the dependencies specified in the manifest.json are present and inside the specified version range. It also makes sure derivation and manifest agree about the domain name.

There shouldn't be a need to disable this hook, but you can set dontCheckManifest to true in the derivation to achieve that.