mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
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:
parent
0f5d490226
commit
cf51b95aea
1 changed files with 4 additions and 4 deletions
|
@ -182,17 +182,17 @@ in with py.pkgs; buildPythonApplication rec {
|
|||
doCheck = stdenv.isLinux;
|
||||
|
||||
checkInputs = [
|
||||
# test infrastructure
|
||||
asynctest
|
||||
# test infrastructure (selectively from requirement_test.txt)
|
||||
pytest-aiohttp
|
||||
pytest-mock
|
||||
pytest-rerunfailures
|
||||
pytest-xdist
|
||||
pytestCheckHook
|
||||
requests-mock
|
||||
# component dependencies
|
||||
pyotp
|
||||
jsonpickle
|
||||
respx
|
||||
# required by tests/auth/mfa_modules
|
||||
pyotp
|
||||
] ++ lib.concatMap (component: getPackages component py.pkgs) componentTests;
|
||||
|
||||
# We can reasonably test components that don't communicate with any network
|
||||
|
|
Loading…
Reference in a new issue