Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
52 lines
1.1 KiB
Nix
52 lines
1.1 KiB
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
hatchling,
|
|
hatch-vcs,
|
|
home-assistant,
|
|
python,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "homeassistant-stubs";
|
|
version = "2025.10.1";
|
|
pyproject = true;
|
|
|
|
disabled = python.version != home-assistant.python.version;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "KapJI";
|
|
repo = "homeassistant-stubs";
|
|
tag = version;
|
|
hash = "sha256-uLr6ZBasZNsCqD2DmOV/zestPW0lak9MSvvvUVWgUqQ=";
|
|
};
|
|
|
|
build-system = [
|
|
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}'
|
|
'';
|
|
|
|
pythonImportsCheck = [
|
|
"homeassistant-stubs"
|
|
];
|
|
|
|
doCheck = false;
|
|
|
|
meta = {
|
|
description = "Typing stubs for Home Assistant Core";
|
|
homepage = "https://github.com/KapJI/homeassistant-stubs";
|
|
changelog = "https://github.com/KapJI/homeassistant-stubs/releases/tag/${src.tag}";
|
|
license = lib.licenses.mit;
|
|
teams = [ lib.teams.home-assistant ];
|
|
};
|
|
}
|