Files
nixpkgs/pkgs/development/python-modules/pudb/default.nix
2025-02-06 18:42:20 +01:00

58 lines
977 B
Nix

{
lib,
buildPythonPackage,
hatchling,
fetchPypi,
jedi,
packaging,
pygments,
urwid,
urwid-readline,
pytest-mock,
pytestCheckHook,
pythonOlder,
}:
buildPythonPackage rec {
pname = "pudb";
version = "2024.1.3";
pyproject = true;
disabled = pythonOlder "3.8";
src = fetchPypi {
inherit pname version;
hash = "sha256-Jk8jngU45S6D09AgFDEAsxccrhcidnS7G5+LB180hJw=";
};
build-system = [ hatchling ];
dependencies = [
jedi
packaging
pygments
urwid
urwid-readline
];
nativeCheckInputs = [
pytest-mock
pytestCheckHook
];
preCheck = ''
export HOME=$TMPDIR
'';
pythonImportsCheck = [ "pudb" ];
meta = with lib; {
description = "Full-screen, console-based Python debugger";
mainProgram = "pudb";
homepage = "https://github.com/inducer/pudb";
changelog = "https://github.com/inducer/pudb/releases/tag/v${version}";
license = licenses.mit;
maintainers = [ ];
};
}