bcb2f287e1
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
23 lines
582 B
Nix
23 lines
582 B
Nix
{
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
lib,
|
|
}:
|
|
buildPythonPackage rec {
|
|
pname = "remote-pdb";
|
|
version = "2.1.0";
|
|
format = "setuptools";
|
|
src = fetchFromGitHub {
|
|
owner = "ionelmc";
|
|
repo = "python-remote-pdb";
|
|
rev = "v${version}";
|
|
hash = "sha256-/7RysJOJigU4coC6d/Ob2lrtw8u8nLZI8wBk4oEEY3g=";
|
|
};
|
|
meta = with lib; {
|
|
description = "Remote vanilla PDB (over TCP sockets)";
|
|
homepage = "https://github.com/ionelmc/python-remote-pdb";
|
|
license = licenses.bsd2;
|
|
maintainers = with maintainers; [ mic92 ];
|
|
platforms = platforms.all;
|
|
};
|
|
}
|