about summary refs log tree commit diff
path: root/pkgs/development/python-modules/pycategories
diff options
context:
space:
mode:
authorSandro Jäckel <sandro.jaeckel@gmail.com>2021-07-20 22:42:24 +0200
committerSandro Jäckel <sandro.jaeckel@gmail.com>2021-07-21 13:32:17 +0200
commit4209fed914e4362f952f4fa6d88c1808aa3df7b8 (patch)
tree88c440c22bb89fccf4b06e2b8696c6a6ef3a9932 /pkgs/development/python-modules/pycategories
parentd863d4b43ee7f4fabadf76a721c57abc54752067 (diff)
downloadnixlib-4209fed914e4362f952f4fa6d88c1808aa3df7b8.tar
nixlib-4209fed914e4362f952f4fa6d88c1808aa3df7b8.tar.gz
nixlib-4209fed914e4362f952f4fa6d88c1808aa3df7b8.tar.bz2
nixlib-4209fed914e4362f952f4fa6d88c1808aa3df7b8.tar.lz
nixlib-4209fed914e4362f952f4fa6d88c1808aa3df7b8.tar.xz
nixlib-4209fed914e4362f952f4fa6d88c1808aa3df7b8.tar.zst
nixlib-4209fed914e4362f952f4fa6d88c1808aa3df7b8.zip
pythonPackages: deprecate pytestcov alias
Diffstat (limited to 'pkgs/development/python-modules/pycategories')
-rw-r--r--pkgs/development/python-modules/pycategories/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/python-modules/pycategories/default.nix b/pkgs/development/python-modules/pycategories/default.nix
index 55f30f9e55a9..48686225e1ef 100644
--- a/pkgs/development/python-modules/pycategories/default.nix
+++ b/pkgs/development/python-modules/pycategories/default.nix
@@ -1,6 +1,6 @@
 { buildPythonPackage
 , callPackage
-, pytestcov
+, pytest-cov
 , fetchPypi
 , lib
 , pytest
@@ -24,7 +24,7 @@ buildPythonPackage rec {
   # and shouldn't be used in production code
   propagatedBuildInputs = [ (callPackage ./infix.nix { }) ];
 
-  checkInputs = [ pytest pytestcov ];
+  checkInputs = [ pytest pytest-cov ];
 
   meta = with lib; {
     homepage = "https://gitlab.com/danielhones/pycategories";