2018-10-15 21:30:32 +01:00
|
|
|
{ stdenv
|
|
|
|
, 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 ];
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2019-04-15 00:25:45 +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 ];
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|