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 , fetchPypi
, ipython , ipython
, isPyPy , isPyPy
, isPy27
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "ipdb"; pname = "ipdb";
version = "0.13.4"; version = "0.13.4";
disabled = isPyPy; # setupterm: could not find terminfo database disabled = isPyPy || isPy27; # setupterm: could not find terminfo database
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;