home-assistant.intents: 2023.6.28 -> 2023.7.25
This commit is contained in:
parent
14399c5cc1
commit
93ca1dd2d7
1 changed files with 11 additions and 12 deletions
|
@ -19,25 +19,19 @@
|
|||
|
||||
buildPythonPackage rec {
|
||||
pname = "home-assistant-intents";
|
||||
version = "2023.6.28";
|
||||
version = "2023.7.25";
|
||||
format = "pyproject";
|
||||
|
||||
disabled = pythonOlder "3.9";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "home-assistant";
|
||||
repo = "intents";
|
||||
repo = "intents-package";
|
||||
rev = "refs/tags/${version}";
|
||||
hash = "sha256-K441nrwoQ7zzle4iC679oGxU6iZn/yTJOElvDblHB7U=";
|
||||
hash = "sha256-/9+d22CqlEi+ukjIZRsyCuPPeTCD+XZp8+5iUM3Nc3o=";
|
||||
fetchSubmodules = true;
|
||||
};
|
||||
|
||||
sourceRoot = "source/package";
|
||||
|
||||
postPatch = ''
|
||||
substituteInPlace pyproject.toml \
|
||||
--replace "2023.4.26" "${version}"
|
||||
'';
|
||||
|
||||
nativeBuildInputs = [
|
||||
hassil
|
||||
jinja2
|
||||
|
@ -48,7 +42,7 @@ buildPythonPackage rec {
|
|||
];
|
||||
|
||||
postInstall = ''
|
||||
pushd ..
|
||||
pushd intents
|
||||
# https://github.com/home-assistant/intents/blob/main/script/package#L18
|
||||
${python.pythonForBuild.interpreter} -m script.intentfest merged_output $out/${python.sitePackages}/home_assistant_intents/data
|
||||
popd
|
||||
|
@ -60,7 +54,12 @@ buildPythonPackage rec {
|
|||
];
|
||||
|
||||
pytestFlagsArray = [
|
||||
"../tests"
|
||||
"intents/tests"
|
||||
];
|
||||
|
||||
disabledTests = [
|
||||
# AssertionError: Recognition failed for 'put apples on the list'
|
||||
"test_shopping_list_HassShoppingListAddItem"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
|
|
Loading…
Reference in a new issue