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