mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-18 02:05:51 +03:00
3628e2abec
https://github.com/KapJI/homeassistant-stubs/releases/tag/2024.1.4 https://github.com/KapJI/homeassistant-stubs/releases/tag/2024.1.5
49 lines
1.1 KiB
Nix
49 lines
1.1 KiB
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, poetry-core
|
|
, home-assistant
|
|
, python
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "homeassistant-stubs";
|
|
version = "2024.1.5";
|
|
format = "pyproject";
|
|
|
|
disabled = python.version != home-assistant.python.version;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "KapJI";
|
|
repo = "homeassistant-stubs";
|
|
rev = "refs/tags/${version}";
|
|
hash = "sha256-mS9GsJwscLQu+vApoxIWE1tZUcu3B3CTMFrcu96POEY=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
poetry-core
|
|
home-assistant
|
|
];
|
|
|
|
postPatch = ''
|
|
# Relax constraint to year and month
|
|
substituteInPlace pyproject.toml --replace \
|
|
'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;
|
|
};
|
|
}
|