summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorFabian Affolter <fabian@affolter-engineering.ch>2023-02-16 12:06:31 +0100
committerGitHub <noreply@github.com>2023-02-16 12:06:31 +0100
commit1a75385e6a7016bee88036702634a1bb7e88afed (patch)
treef31a9f979e7a73845be07c5d075f29220b6c901d /pkgs
parent04ffb31493509de1f292aa36bacd16aa39b9ec2d (diff)
parent64bf02e1cf2bcf8c772962cd4da27d6aa8bc7beb (diff)
Merge pull request #216190 from fabaff/simplisafe-python-at
python310Packages.simplisafe-python: drop asynctest
Diffstat (limited to 'pkgs')
-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 ac6ca9c21264a..74c7a3c0addf0 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"