1{ stdenv
2, buildPythonPackage
3, fetchPypi
4, ipython
5, isPyPy
6}:
7
8buildPythonPackage rec {
9 pname = "ipdb";
10 version = "0.8.1";
11 disabled = isPyPy; # setupterm: could not find terminfo database
12
13 src = fetchPypi {
14 inherit pname version;
15 extension = "zip";
16 sha256 = "1763d1564113f5eb89df77879a8d3213273c4d7ff93dcb37a3070cdf0c34fd7c";
17 };
18
19 propagatedBuildInputs = [ ipython ];
20
21 meta = with stdenv.lib; {
22 homepage = https://github.com/gotcha/ipdb;
23 description = "IPython-enabled pdb";
24 license = licenses.bsd0;
25 maintainers = [ maintainers.costrouc ];
26 };
27
28}