1{ lib
2, buildPythonPackage
3, fetchPypi
4, nose
5, ipython
6}:
7
8buildPythonPackage rec {
9 pname = "ipdbplugin";
10 version = "1.5.0";
11
12 src = fetchPypi {
13 inherit pname version;
14 sha256 = "cdcd6bc1e995c3c2c4971ed95f207e680aa44980b716fa43fb675ff2dcc7894f";
15 };
16
17 propagatedBuildInputs = [ nose ipython ];
18
19 meta = with lib; {
20 homepage = "https://github.com/flavioamieiro/nose-ipdb/tree/master";
21 description = "Nose plugin to use iPdb instead of Pdb when tests fail";
22 license = licenses.lgpl2;
23 maintainers = [ ];
24 };
25
26}