python3Packages.ipdb: add missing test deps

This commit is contained in:
Jonathan Ringer 2020-11-05 20:53:31 -08:00
parent 18252b3f82
commit c9a550126b

View File

@ -4,6 +4,7 @@
, ipython , ipython
, isPyPy , isPyPy
, isPy27 , isPy27
, mock
}: }:
buildPythonPackage rec { buildPythonPackage rec {
@ -17,6 +18,7 @@ buildPythonPackage rec {
}; };
propagatedBuildInputs = [ ipython ]; propagatedBuildInputs = [ ipython ];
checkInputs = [ mock ];
preCheck = '' preCheck = ''
export HOME=$(mktemp -d) export HOME=$(mktemp -d)