nixpkgs/pkgs/development/python-modules/pudb/default.nix

30 lines
567 B
Nix
Raw Normal View History

{ lib
, buildPythonPackage
, fetchPypi
, pygments
, urwid
, isPy3k
}:
buildPythonPackage rec {
pname = "pudb";
2021-03-24 09:28:21 +00:00
version = "2020.1";
src = fetchPypi {
inherit pname version;
2021-03-24 09:28:21 +00:00
sha256 = "2ef23d3371439f13fffbe7f8b9fc180a19d4183dc9cab204d878d7c7766464bf";
};
propagatedBuildInputs = [ pygments urwid ];
# Tests fail on python 3 due to writes to the read-only home directory
doCheck = !isPy3k;
meta = with lib; {
description = "A full-screen, console-based Python debugger";
license = licenses.mit;
platforms = platforms.all;
};
}