2021-01-25 08:26:54 +00:00
|
|
|
{ lib
|
2018-10-15 21:30:32 +01:00
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
|
|
|
, nose
|
|
|
|
, ipython
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "ipdbplugin";
|
2018-11-04 10:35:03 +00:00
|
|
|
version = "1.5.0";
|
2018-10-15 21:30:32 +01:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2018-11-04 10:35:03 +00:00
|
|
|
sha256 = "cdcd6bc1e995c3c2c4971ed95f207e680aa44980b716fa43fb675ff2dcc7894f";
|
2018-10-15 21:30:32 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ nose ipython ];
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/flavioamieiro/nose-ipdb/tree/master";
|
2018-10-15 21:30:32 +01:00
|
|
|
description = "Nose plugin to use iPdb instead of Pdb when tests fail";
|
|
|
|
license = licenses.lgpl2;
|
|
|
|
maintainers = [ maintainers.costrouc ];
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|