pythonPackages.ipdb: disable python2

This commit is contained in:
Jonathan Ringer 2020-11-05 20:30:48 -08:00
parent b715913402
commit 2f8226470d

View File

@ -3,12 +3,13 @@
, fetchPypi
, ipython
, isPyPy
, isPy27
}:
buildPythonPackage rec {
pname = "ipdb";
version = "0.13.4";
disabled = isPyPy; # setupterm: could not find terminfo database
disabled = isPyPy || isPy27; # setupterm: could not find terminfo database
src = fetchPypi {
inherit pname version;