mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 19:21:04 +00:00
51 lines
1.1 KiB
Nix
51 lines
1.1 KiB
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, hatchling
|
|
, hatch-vcs
|
|
, home-assistant
|
|
, python
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "homeassistant-stubs";
|
|
version = "2024.10.4";
|
|
pyproject = true;
|
|
|
|
disabled = python.version != home-assistant.python.version;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "KapJI";
|
|
repo = "homeassistant-stubs";
|
|
rev = "refs/tags/${version}";
|
|
hash = "sha256-MjHqX1OP1mEEypAxZ8Xc+ZWBsfj4yiFG9oItFnf/svk=";
|
|
};
|
|
|
|
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 = with lib; {
|
|
description = "Typing stubs for Home Assistant Core";
|
|
homepage = "https://github.com/KapJI/homeassistant-stubs";
|
|
changelog = "https://github.com/KapJI/homeassistant-stubs/releases/tag/${version}";
|
|
license = licenses.mit;
|
|
maintainers = teams.home-assistant.members;
|
|
};
|
|
}
|