nixpkgs/pkgs/servers/home-assistant/custom-components
Alexis Hildebrandt f8c4a98e8e treewide: Remove the definite article from meta.description
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"([Tt]he)? ' pkgs \
  | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Tt]he (.)/\1\U\2/'
2024-06-09 23:08:46 +02:00
..
adaptive_lighting
auth-header
better_thermostat
emporia_vue
epex_spot
frigate
govee-lan
gpio
homematicip_local home-assistant-custom-components.homematicip_local: 1.62.0 -> 1.63.0 2024-06-07 14:00:42 +02:00
indego
local_luftdaten
localtuya treewide: Remove indefinite article from meta.description 2024-06-09 23:07:45 +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
ntfy
omnik_inverter treewide: Remove the definite article from meta.description 2024-06-09 23:08:46 +02:00
prometheus_sensor
sensi
smartir
smartthinq-sensors home-assistant-custom-components.smartthinq-sensors: 0.39.0 -> 0.39.2 2024-06-06 12:40:46 +03:00
tuya_local
waste_collection_schedule
xiaomi_gateway3
xiaomi_miot treewide: Remove ending period from meta.description 2024-06-09 23:04:51 +02:00
yassi treewide: Remove indefinite article from meta.description 2024-06-09 23:07:45 +02:00
default.nix
README.md

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.