mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-11-09 16:18:34 +01:00
Diff: https://github.com/OHF-Voice/intents-package/compare/2025.10.28...2025.11.7 Changelog: https://github.com/OHF-Voice/intents-package/releases/tag/2025.11.7
73 lines
1.5 KiB
Nix
73 lines
1.5 KiB
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
pythonOlder,
|
|
|
|
# build-system
|
|
setuptools,
|
|
|
|
# codegen
|
|
hassil,
|
|
python,
|
|
pyyaml,
|
|
voluptuous,
|
|
regex,
|
|
jinja2,
|
|
|
|
# tests
|
|
pytest-xdist,
|
|
pytestCheckHook,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "home-assistant-intents";
|
|
version = "2025.11.7";
|
|
pyproject = true;
|
|
|
|
disabled = pythonOlder "3.9";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "OHF-Voice";
|
|
repo = "intents-package";
|
|
tag = version;
|
|
fetchSubmodules = true;
|
|
hash = "sha256-F6QctdjF6xoQ3d49MdOUb/8CHgV84wxZHUrGGmiYYcs=";
|
|
};
|
|
|
|
build-system = [
|
|
setuptools
|
|
|
|
# build-time codegen; https://github.com/home-assistant/intents/blob/main/requirements.txt#L1-L5
|
|
hassil
|
|
pyyaml
|
|
voluptuous
|
|
regex
|
|
jinja2
|
|
];
|
|
|
|
postInstall = ''
|
|
# https://github.com/OHF-Voice/intents-package/blob/main/script/package#L23-L24
|
|
PACKAGE_DIR=$out/${python.sitePackages}/home_assistant_intents
|
|
${python.pythonOnBuildForHost.interpreter} script/merged_output.py $PACKAGE_DIR/data
|
|
${python.pythonOnBuildForHost.interpreter} script/write_languages.py $PACKAGE_DIR/data > $PACKAGE_DIR/languages.py
|
|
'';
|
|
|
|
nativeCheckInputs = [
|
|
pytest-xdist
|
|
pytestCheckHook
|
|
];
|
|
|
|
enabledTestPaths = [
|
|
"intents/tests"
|
|
];
|
|
|
|
meta = with lib; {
|
|
changelog = "https://github.com/OHF-Voice/intents-package/releases/tag/${src.tag}";
|
|
description = "Intents to be used with Home Assistant";
|
|
homepage = "https://github.com/OHF-Voice/intents-package";
|
|
license = licenses.cc-by-40;
|
|
teams = [ teams.home-assistant ];
|
|
};
|
|
}
|