From 2f8226470d442c37177d2de0d36e5ce569cb7d1a Mon Sep 17 00:00:00 2001 From: Jonathan Ringer Date: Thu, 5 Nov 2020 20:30:48 -0800 Subject: [PATCH] pythonPackages.ipdb: disable python2 --- pkgs/development/python-modules/ipdb/default.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/ipdb/default.nix b/pkgs/development/python-modules/ipdb/default.nix index 8fd20290b0e..652ee6434b3 100644 --- a/pkgs/development/python-modules/ipdb/default.nix +++ b/pkgs/development/python-modules/ipdb/default.nix @@ -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;