mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-12 03:56:17 +03:00
Add pudb, interactive python debugger
This commit is contained in:
parent
9faa4f4b7b
commit
a72ba70641
@ -1006,6 +1006,24 @@ pythonPackages = python.modules // rec {
|
|||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
pudb = buildPythonPackage rec {
|
||||||
|
name = "pudb-2013.1";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = "http://pypi.python.org/packages/source/p/pudb/${name}.tar.gz";
|
||||||
|
md5 = "f94922aba7f862f13886457dc3fadc6a";
|
||||||
|
};
|
||||||
|
|
||||||
|
propagatedBuildInputs = [ pythonPackages.pygments pythonPackages.urwid ];
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "A full-screen, console-based Python debugger";
|
||||||
|
license = licenses.mit;
|
||||||
|
platforms = platforms.all;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
pyramid = buildPythonPackage rec {
|
pyramid = buildPythonPackage rec {
|
||||||
name = "pyramid-1.3.4";
|
name = "pyramid-1.3.4";
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user