1{ buildPythonPackage, fetchFromGitHub, lib }: 2buildPythonPackage rec { 3 pname = "remote-pdb"; 4 version = "2.1.0"; 5 src = fetchFromGitHub { 6 owner = "ionelmc"; 7 repo = "python-remote-pdb"; 8 rev = "v${version}"; 9 hash = "sha256-/7RysJOJigU4coC6d/Ob2lrtw8u8nLZI8wBk4oEEY3g="; 10 }; 11 meta = with lib; { 12 description = "Remote vanilla PDB (over TCP sockets)."; 13 homepage = "https://github.com/ionelmc/python-remote-pdb"; 14 license = licenses.bsd2; 15 maintainers = with maintainers; [ mic92 ]; 16 platforms = platforms.all; 17 }; 18}