Merge pull request #119126 from fabaff/pycomfoconnect
[NixPkgs.git] / pkgs / development / python-modules / pudb / default.nix
blobdb48fbf1e4809fd2248b14060c40e16ec161c6d2
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , pygments
5 , urwid
6 , isPy3k
7 }:
9 buildPythonPackage rec {
10   pname = "pudb";
11   version = "2019.2";
13   src = fetchPypi {
14     inherit pname version;
15     sha256 = "1p2qizb35f9lfhklldzrn8g9mwiar3zmpc44463h5n1ln40ymw78";
16   };
18   propagatedBuildInputs = [ pygments urwid ];
20   # Tests fail on python 3 due to writes to the read-only home directory
21   doCheck = !isPy3k;
23   meta = with lib; {
24     description = "A full-screen, console-based Python debugger";
25     license = licenses.mit;
26     platforms = platforms.all;
27   };