nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at python-updates 23 lines 584 B view raw
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 = { 17 description = "Remote vanilla PDB (over TCP sockets)"; 18 homepage = "https://github.com/ionelmc/python-remote-pdb"; 19 license = lib.licenses.bsd2; 20 maintainers = with lib.maintainers; [ mic92 ]; 21 platforms = lib.platforms.all; 22 }; 23}