mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 15:33:13 +00:00
f7da8b5541
https://github.com/home-assistant/intents-package/compare/refs/tags/2023.12.05...2024.1.2
78 lines
1.5 KiB
Nix
78 lines
1.5 KiB
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, pythonOlder
|
|
|
|
# build
|
|
, hassil
|
|
, jinja2
|
|
, pyyaml
|
|
, regex
|
|
, voluptuous
|
|
, python
|
|
, setuptools
|
|
, wheel
|
|
|
|
# tests
|
|
, pytest-xdist
|
|
, pytestCheckHook
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "home-assistant-intents";
|
|
version = "2024.1.2";
|
|
format = "pyproject";
|
|
|
|
disabled = pythonOlder "3.9";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "home-assistant";
|
|
repo = "intents-package";
|
|
rev = "refs/tags/${version}";
|
|
hash = "sha256-uOrSvkzymG31nRmAgrn6z1IDJWahxqXHcPDflLPRVT4=";
|
|
fetchSubmodules = true;
|
|
};
|
|
|
|
postPatch = ''
|
|
substituteInPlace pyproject.toml --replace 'requires = ["setuptools~=62.3", "wheel~=0.37.1"]' 'requires = ["setuptools", "wheel"]'
|
|
'';
|
|
|
|
nativeBuildInputs = [
|
|
hassil
|
|
jinja2
|
|
pyyaml
|
|
regex
|
|
setuptools
|
|
wheel
|
|
voluptuous
|
|
];
|
|
|
|
postInstall = ''
|
|
pushd intents
|
|
# https://github.com/home-assistant/intents/blob/main/script/package#L18
|
|
${python.pythonOnBuildForHost.interpreter} -m script.intentfest merged_output $out/${python.sitePackages}/home_assistant_intents/data
|
|
popd
|
|
'';
|
|
|
|
checkInputs = [
|
|
pytest-xdist
|
|
pytestCheckHook
|
|
];
|
|
|
|
pytestFlagsArray = [
|
|
"intents/tests"
|
|
];
|
|
|
|
disabledTests = [
|
|
# AssertionError: Recognition failed for 'put apples on the list'
|
|
"test_shopping_list_HassShoppingListAddItem"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Intents to be used with Home Assistant";
|
|
homepage = "https://github.com/home-assistant/intents";
|
|
license = licenses.cc-by-40;
|
|
maintainers = teams.home-assistant.members;
|
|
};
|
|
}
|