2024-06-05 15:53:02 +00:00
|
|
|
{
|
|
|
|
buildPythonPackage,
|
|
|
|
fetchFromGitHub,
|
|
|
|
lib,
|
|
|
|
}:
|
2023-02-02 18:25:31 +00:00
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "remote-pdb";
|
|
|
|
version = "2.1.0";
|
2024-01-02 11:29:13 +00:00
|
|
|
format = "setuptools";
|
2023-02-02 18:25:31 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "ionelmc";
|
|
|
|
repo = "python-remote-pdb";
|
|
|
|
rev = "v${version}";
|
2023-03-15 16:39:30 +00:00
|
|
|
hash = "sha256-/7RysJOJigU4coC6d/Ob2lrtw8u8nLZI8wBk4oEEY3g=";
|
2023-02-02 18:25:31 +00:00
|
|
|
};
|
|
|
|
meta = with lib; {
|
2024-06-20 14:57:18 +00:00
|
|
|
description = "Remote vanilla PDB (over TCP sockets)";
|
2023-02-02 18:25:31 +00:00
|
|
|
homepage = "https://github.com/ionelmc/python-remote-pdb";
|
|
|
|
license = licenses.bsd2;
|
|
|
|
maintainers = with maintainers; [ mic92 ];
|
|
|
|
platforms = platforms.all;
|
|
|
|
};
|
|
|
|
}
|