dae973cb59
GitOrigin-RevId: c90c4025bb6e0c4eaf438128a3b2640314b1c58d
41 lines
901 B
Nix
41 lines
901 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, poetry-core
|
|
, home-assistant
|
|
, python
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "homeassistant-stubs";
|
|
version = "2023.3.1";
|
|
format = "pyproject";
|
|
|
|
disabled = python.version != home-assistant.python.version;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "KapJI";
|
|
repo = "homeassistant-stubs";
|
|
rev = "refs/tags/${version}";
|
|
hash = "sha256-WMuQgoWwri4nfKkZ8cW5o6S6G3PbHqlUxC9wyJSZhxQ=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
poetry-core
|
|
home-assistant
|
|
];
|
|
|
|
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;
|
|
};
|
|
}
|