depot/third_party/nixpkgs/pkgs/development/python-modules/remote-pdb/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

23 lines
583 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;
};
}