about summary refs log tree commit diff
path: root/pkgs/development/python-modules/async-upnp-client
diff options
context:
space:
mode:
authorSandro Jäckel <sandro.jaeckel@gmail.com>2021-03-12 23:27:52 +0100
committerFrederik Rietdijk <fridh@fridh.nl>2021-03-13 16:21:30 +0100
commited44183ff02f75aebdda305e5ccd0dd3feb34201 (patch)
treeab72b9e938f70a14d7fb770cf1cac3fd2716241c /pkgs/development/python-modules/async-upnp-client
parentd0f00f69b4974c25012a07812c4f47a5df88ece0 (diff)
pythonPackages.async-upnp-client: use pytest_6_1CheckHook
Diffstat (limited to 'pkgs/development/python-modules/async-upnp-client')
-rw-r--r--pkgs/development/python-modules/async-upnp-client/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/python-modules/async-upnp-client/default.nix b/pkgs/development/python-modules/async-upnp-client/default.nix
index 6697cb5d13e89..5f6d68b9ca537 100644
--- a/pkgs/development/python-modules/async-upnp-client/default.nix
+++ b/pkgs/development/python-modules/async-upnp-client/default.nix
@@ -1,6 +1,6 @@
 { lib, buildPythonPackage, fetchFromGitHub, pythonOlder
 , voluptuous, aiohttp, async-timeout, python-didl-lite, defusedxml
-, pytest_6, pytest-asyncio }:
+, pytestCheckHook, pytest-asyncio }:
 
 buildPythonPackage rec {
   pname = "async-upnp-client";
@@ -23,7 +23,7 @@ buildPythonPackage rec {
   ];
 
   checkInputs = [
-    pytest_6
+    pytestCheckHook
     pytest-asyncio
   ];