summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/simplisafe-python
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2023-02-16 11:21:14 +0100
committerFabian Affolter <mail@fabian-affolter.ch>2023-02-16 11:21:14 +0100
commit64bf02e1cf2bcf8c772962cd4da27d6aa8bc7beb (patch)
treed5b8e09393d658ce7d9625d0a5dee4d66ff4a3e8 /pkgs/development/python-modules/simplisafe-python
parentfdbf633c4851ed0750ec54dedcb0b3be2639c31f (diff)
python310Packages.simplisafe-python: drop asynctest
Diffstat (limited to 'pkgs/development/python-modules/simplisafe-python')
-rw-r--r--pkgs/development/python-modules/simplisafe-python/default.nix9
1 files changed, 1 insertions, 8 deletions
diff --git a/pkgs/development/python-modules/simplisafe-python/default.nix b/pkgs/development/python-modules/simplisafe-python/default.nix
index ac6ca9c21264..74c7a3c0addf 100644
--- a/pkgs/development/python-modules/simplisafe-python/default.nix
+++ b/pkgs/development/python-modules/simplisafe-python/default.nix
@@ -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"