python312Packages.homeassistant-stubs: 2024.9.2 -> 2024.9.3

https://github.com/KapJI/homeassistant-stubs/releases/tag/2024.9.3
This commit is contained in:
Martin Weinelt 2024-09-24 12:59:01 +02:00
parent 564fa97ede
commit 94721c1f73
No known key found for this signature in database
GPG Key ID: 87C1E9888F856759

View File

@ -1,14 +1,15 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, poetry-core
, hatchling
, hatch-vcs
, home-assistant
, python
}:
buildPythonPackage rec {
pname = "homeassistant-stubs";
version = "2024.9.2";
version = "2024.9.3";
pyproject = true;
disabled = python.version != home-assistant.python.version;
@ -17,19 +18,20 @@ buildPythonPackage rec {
owner = "KapJI";
repo = "homeassistant-stubs";
rev = "refs/tags/${version}";
hash = "sha256-o5bk63yErDOqNlYeGD7nMNuQ2p9rQuRYXlmfIMo8w8k=";
hash = "sha256-ohk0Gxq+q7PH/+SRMEu4KFz/xoc/TDeuEzTnMjaYMBU=";
};
build-system = [
poetry-core
hatchling
hatch-vcs
home-assistant
];
postPatch = ''
# Relax constraint to year and month
substituteInPlace pyproject.toml --replace-fail \
'homeassistant = "${version}"' \
'homeassistant = "~${lib.versions.majorMinor home-assistant.version}"'
'homeassistant==${version}' \
'homeassistant~=${lib.versions.majorMinor home-assistant.version}'
'';
pythonImportsCheck = [