pythonPackages.ipdbplugin: refactor move to python-modules

This commit is contained in:
Chris Ostrouchov
2018-10-15 16:30:32 -04:00
committed by Frederik Rietdijk
parent 2750333f9d
commit 85731ef51c
2 changed files with 27 additions and 8 deletions

View File

@@ -0,0 +1,26 @@
{ stdenv
, buildPythonPackage
, fetchPypi
, nose
, ipython
}:
buildPythonPackage rec {
pname = "ipdbplugin";
version = "1.4";
src = fetchPypi {
inherit pname version;
sha256 = "4778d78b5d0af1a2a6d341aed9e72eb73b1df6b179e145b4845d3a209137029c";
};
propagatedBuildInputs = [ nose ipython ];
meta = with stdenv.lib; {
homepage = http://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 ];
};
}