python310Packages.simplisafe-python: drop asynctest

This commit is contained in:
Fabian Affolter 2023-02-16 11:21:14 +01:00
parent fdbf633c48
commit 64bf02e1cf

View File

@ -1,7 +1,6 @@
{ lib
, aiohttp
, aresponses
, asynctest
, backoff
, beautifulsoup4
, buildPythonPackage
@ -23,7 +22,7 @@ buildPythonPackage rec {
version = "2022.12.1";
format = "pyproject";
disabled = pythonOlder "3.8";
disabled = pythonOlder "3.9";
src = fetchFromGitHub {
owner = "bachya";
@ -48,18 +47,12 @@ buildPythonPackage rec {
nativeCheckInputs = [
aresponses
asynctest
pytest-aiohttp
pytest-asyncio
pytestCheckHook
types-pytz
];
postPatch = ''
substituteInPlace pyproject.toml \
--replace 'docutils = "<0.18"' 'docutils = "*"'
'';
disabledTests = [
# simplipy/api.py:253: InvalidCredentialsError
"test_request_error_failed_retry"