mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
ipdbplugin: nose ipdb plugin, nosetests --ipdb
This commit is contained in:
parent
a7359deca8
commit
36ca429641
1 changed files with 10 additions and 0 deletions
|
@ -1389,6 +1389,16 @@ pythonPackages = python.modules // rec {
|
|||
propagatedBuildInputs = [ ipython ];
|
||||
};
|
||||
|
||||
ipdbplugin = buildPythonPackage {
|
||||
name = "ipdbplugin-1.2";
|
||||
src = fetchurl {
|
||||
url = "https://pypi.python.org/packages/source/i/ipdbplugin/ipdbplugin-1.2.tar.gz";
|
||||
md5 = "39169b00a2186b99469249c5b0613753";
|
||||
};
|
||||
propagatedBuildInputs = [ nose ipython ];
|
||||
};
|
||||
|
||||
|
||||
jedi = buildPythonPackage (rec {
|
||||
name = "jedi-0.5b5";
|
||||
|
||||
|
|
Loading…
Reference in a new issue