about summary refs log tree commit diff
path: root/pkgs/tools/filesystems/gitfs
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/tools/filesystems/gitfs
parentd863d4b43ee7f4fabadf76a721c57abc54752067 (diff)
pythonPackages: deprecate pytestcov alias
Diffstat (limited to 'pkgs/tools/filesystems/gitfs')
-rw-r--r--pkgs/tools/filesystems/gitfs/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/tools/filesystems/gitfs/default.nix b/pkgs/tools/filesystems/gitfs/default.nix
index 03e76e5fb2750..b5b1256a9b5eb 100644
--- a/pkgs/tools/filesystems/gitfs/default.nix
+++ b/pkgs/tools/filesystems/gitfs/default.nix
@@ -22,7 +22,7 @@ python3Packages.buildPythonApplication rec {
       'from pygit2 import RemoteCallbacks'
   '';
 
-  checkInputs = with python3Packages; [ pytest pytestcov mock ];
+  checkInputs = with python3Packages; [ pytest pytest-cov mock ];
   propagatedBuildInputs = with python3Packages; [ atomiclong fusepy pygit2 six ];
 
   checkPhase = "py.test";