home-assistant: relax lru-dict constraint, clean up
This commit is contained in:
parent
59f02031e9
commit
e9babd935d
1 changed files with 2 additions and 17 deletions
|
@ -329,7 +329,7 @@ in python.pkgs.buildPythonApplication rec {
|
|||
format = "pyproject";
|
||||
|
||||
# check REQUIRED_PYTHON_VER in homeassistant/const.py
|
||||
disabled = python.pythonOlder "3.10";
|
||||
disabled = python.pythonOlder "3.11";
|
||||
|
||||
# don't try and fail to strip 6600+ python files, it takes minutes!
|
||||
dontStrip = true;
|
||||
|
@ -351,28 +351,13 @@ in python.pkgs.buildPythonApplication rec {
|
|||
nativeBuildInputs = with python.pkgs; [
|
||||
pythonRelaxDepsHook
|
||||
setuptools
|
||||
wheel
|
||||
];
|
||||
|
||||
pythonRelaxDeps = [
|
||||
"aiohttp"
|
||||
"attrs"
|
||||
"awesomeversion"
|
||||
"bcrypt"
|
||||
"ciso8601"
|
||||
"cryptography"
|
||||
"home-assistant-bluetooth"
|
||||
"httpx"
|
||||
"ifaddr"
|
||||
"lru-dict"
|
||||
"orjson"
|
||||
"pip"
|
||||
"PyJWT"
|
||||
"pyOpenSSL"
|
||||
"PyYAML"
|
||||
"requests"
|
||||
"typing-extensions"
|
||||
"voluptuous-serialize"
|
||||
"yarl"
|
||||
];
|
||||
|
||||
# extract translations from pypi sdist
|
||||
|
|
Loading…
Reference in a new issue