Merge pull request #126072 from Infinisil/ipdb-py2

python2Packages.ipdb: Fix build
master
Silvan Mosberger 2021-06-08 14:41:50 +02:00 committed by GitHub
commit 71dd55f5d1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -3,21 +3,21 @@
, fetchPypi , fetchPypi
, ipython , ipython
, isPyPy , isPyPy
, isPy27
, mock , mock
, toml
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "ipdb"; pname = "ipdb";
version = "0.13.7"; version = "0.13.7";
disabled = isPyPy || isPy27; # setupterm: could not find terminfo database disabled = isPyPy; # setupterm: could not find terminfo database
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
sha256 = "178c367a61c1039e44e17c56fcc4a6e7dc11b33561261382d419b6ddb4401810"; sha256 = "178c367a61c1039e44e17c56fcc4a6e7dc11b33561261382d419b6ddb4401810";
}; };
propagatedBuildInputs = [ ipython ]; propagatedBuildInputs = [ ipython toml ];
checkInputs = [ mock ]; checkInputs = [ mock ];
preCheck = '' preCheck = ''