pythonPackages.ipdbplugin: refactor move to python-modules
This commit is contained in:
committed by
Frederik Rietdijk
parent
2750333f9d
commit
85731ef51c
26
pkgs/development/python-modules/ipdbplugin/default.nix
Normal file
26
pkgs/development/python-modules/ipdbplugin/default.nix
Normal 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 ];
|
||||
};
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user