summary refs log tree commit diff
path: root/pkgs/development/python-modules/ipdbplugin/default.nix
blob: b092a9fa2aecee9c4d98dcf2f99668c16535e460 (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
{ stdenv
, buildPythonPackage
, fetchPypi
, nose
, ipython
}:

buildPythonPackage rec {
  pname = "ipdbplugin";
  version = "1.5.0";

  src = fetchPypi {
    inherit pname version;
    sha256 = "cdcd6bc1e995c3c2c4971ed95f207e680aa44980b716fa43fb675ff2dcc7894f";
  };

  propagatedBuildInputs = [ nose ipython ];

  meta = with stdenv.lib; {
    homepage = https://github.com/flavioamieiro/nose-ipdb/tree/master;
    description = "Nose plugin to use iPdb instead of Pdb when tests fail";
    license = licenses.lgpl2;
    maintainers = [ maintainers.costrouc ];
  };

}