about summary refs log tree commit diff
path: root/pkgs/development/python-modules/hypothesis
diff options
context:
space:
mode:
authorSandro Jäckel <sandro.jaeckel@gmail.com>2021-07-20 23:08:56 +0200
committerSandro Jäckel <sandro.jaeckel@gmail.com>2021-07-21 13:32:52 +0200
commit2e9c330216f5fbb3a5e645ba398a839c5ea08e61 (patch)
treeda046e0b1919427c05402e78722a21542832e0ec /pkgs/development/python-modules/hypothesis
parentdd712027be98a6d782fc9cb492f557bb48e3dd31 (diff)
pythonPackages: deprecate pytest_xdist alias
Diffstat (limited to 'pkgs/development/python-modules/hypothesis')
-rw-r--r--pkgs/development/python-modules/hypothesis/2.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/python-modules/hypothesis/2.nix b/pkgs/development/python-modules/hypothesis/2.nix
index 5b086d5f1a7f0..47bc8860bc54f 100644
--- a/pkgs/development/python-modules/hypothesis/2.nix
+++ b/pkgs/development/python-modules/hypothesis/2.nix
@@ -1,6 +1,6 @@
 { lib, buildPythonPackage, fetchFromGitHub
 , isPy3k, attrs, coverage, enum34, pexpect
-, doCheck ? true, pytest, pytest_xdist, flaky, mock
+, doCheck ? true, pytest, pytest-xdist, flaky, mock
 , sortedcontainers
 }:
 buildPythonPackage rec {
@@ -29,7 +29,7 @@ buildPythonPackage rec {
     sortedcontainers
   ] ++ lib.optional (!isPy3k) enum34;
 
-  checkInputs = [ pytest pytest_xdist flaky mock pexpect ];
+  checkInputs = [ pytest pytest-xdist flaky mock pexpect ];
   inherit doCheck;
 
   checkPhase = ''