home-assistant: add jsonpickle to checkInputs

Drop asynctest, it was dropped back in january upstream. These
dependencies are sadly not part of the manifest, that we are parsing.
This commit is contained in:
Martin Weinelt 2021-05-10 21:25:43 +02:00
parent 0f5d490226
commit cf51b95aea
No known key found for this signature in database
GPG Key ID: 87C1E9888F856759

View File

@ -182,17 +182,17 @@ in with py.pkgs; buildPythonApplication rec {
doCheck = stdenv.isLinux; doCheck = stdenv.isLinux;
checkInputs = [ checkInputs = [
# test infrastructure # test infrastructure (selectively from requirement_test.txt)
asynctest
pytest-aiohttp pytest-aiohttp
pytest-mock pytest-mock
pytest-rerunfailures pytest-rerunfailures
pytest-xdist pytest-xdist
pytestCheckHook pytestCheckHook
requests-mock requests-mock
# component dependencies jsonpickle
pyotp
respx respx
# required by tests/auth/mfa_modules
pyotp
] ++ lib.concatMap (component: getPackages component py.pkgs) componentTests; ] ++ lib.concatMap (component: getPackages component py.pkgs) componentTests;
# We can reasonably test components that don't communicate with any network # We can reasonably test components that don't communicate with any network