summary refs log tree commit diff
path: root/pkgs/development/python-modules/sseclient
diff options
context:
space:
mode:
authorSandro Jäckel <sandro.jaeckel@gmail.com>2021-07-20 23:07:53 +0200
committerSandro Jäckel <sandro.jaeckel@gmail.com>2021-07-21 13:32:49 +0200
commit9bfdf57e139e7e3b253979da828285bb8284a217 (patch)
tree3e28797f722e0de7188f54f1d11ff7ef07db1cb4 /pkgs/development/python-modules/sseclient
parent4209fed914e4362f952f4fa6d88c1808aa3df7b8 (diff)
downloadnixpkgs-9bfdf57e139e7e3b253979da828285bb8284a217.tar
nixpkgs-9bfdf57e139e7e3b253979da828285bb8284a217.tar.gz
nixpkgs-9bfdf57e139e7e3b253979da828285bb8284a217.tar.bz2
nixpkgs-9bfdf57e139e7e3b253979da828285bb8284a217.tar.lz
nixpkgs-9bfdf57e139e7e3b253979da828285bb8284a217.tar.xz
nixpkgs-9bfdf57e139e7e3b253979da828285bb8284a217.tar.zst
nixpkgs-9bfdf57e139e7e3b253979da828285bb8284a217.zip
pythonPackages: deprecate pytestrunner alias
Diffstat (limited to 'pkgs/development/python-modules/sseclient')
-rw-r--r--pkgs/development/python-modules/sseclient/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/python-modules/sseclient/default.nix b/pkgs/development/python-modules/sseclient/default.nix
index 6bbeb23ed1f..a9fdfe2050e 100644
--- a/pkgs/development/python-modules/sseclient/default.nix
+++ b/pkgs/development/python-modules/sseclient/default.nix
@@ -1,6 +1,6 @@
 { lib, buildPythonPackage, fetchPypi, isPy27
 , requests, six
-, backports_unittest-mock, pytestCheckHook, pytestrunner }:
+, backports_unittest-mock, pytestCheckHook, pytest-runner }:
 
 buildPythonPackage rec {
   pname = "sseclient";
@@ -15,7 +15,7 @@ buildPythonPackage rec {
 
   # some tests use python3 strings
   doCheck = !isPy27;
-  checkInputs = [ backports_unittest-mock pytestCheckHook pytestrunner ];
+  checkInputs = [ backports_unittest-mock pytestCheckHook pytest-runner ];
 
   # tries to open connection to wikipedia
   disabledTests = [ "event_stream" ];