summary refs log tree commit diff
path: root/pkgs/development/python-modules/ipdb/default.nix
blob: 3203963b29dac5cd9dcff0f2cfaa3e7ae17054c1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{ stdenv
, buildPythonPackage
, fetchPypi
, ipython
, isPyPy
}:

buildPythonPackage rec {
  pname = "ipdb";
  version = "0.8.1";
  disabled = isPyPy;  # setupterm: could not find terminfo database

  src = fetchPypi {
    inherit pname version;
    extension = "zip";
    sha256 = "1763d1564113f5eb89df77879a8d3213273c4d7ff93dcb37a3070cdf0c34fd7c";
  };

  propagatedBuildInputs = [ ipython ];

  meta = with stdenv.lib; {
    homepage = https://github.com/gotcha/ipdb;
    description = "IPython-enabled pdb";
    license = licenses.bsd0;
    maintainers = [ maintainers.costrouc ];
  };

}