about summary refs log tree commit diff
path: root/pkgs/development/python-modules/pglast
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/pglast
parentd863d4b43ee7f4fabadf76a721c57abc54752067 (diff)
pythonPackages: deprecate pytestcov alias
Diffstat (limited to 'pkgs/development/python-modules/pglast')
-rw-r--r--pkgs/development/python-modules/pglast/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/python-modules/pglast/default.nix b/pkgs/development/python-modules/pglast/default.nix
index 6a0f8940788c2..8184c6d0d18a0 100644
--- a/pkgs/development/python-modules/pglast/default.nix
+++ b/pkgs/development/python-modules/pglast/default.nix
@@ -3,7 +3,7 @@
 , fetchFromGitHub
 , isPy3k
 , setuptools
-, pytestcov
+, pytest-cov
 , pytest
 }:
 
@@ -24,7 +24,7 @@ buildPythonPackage rec {
 
   propagatedBuildInputs = [ setuptools ];
 
-  checkInputs = [ pytest pytestcov ];
+  checkInputs = [ pytest pytest-cov ];
 
   pythonImportsCheck = [ "pglast" ];