Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / remote-pdb / default.nix
blob5081c34c3c46423f35f5275eb92bf06cb52d2d93
1 { buildPythonPackage, fetchFromGitHub, lib }:
2 buildPythonPackage rec {
3   pname = "remote-pdb";
4   version = "2.1.0";
5   format = "setuptools";
6   src = fetchFromGitHub {
7     owner = "ionelmc";
8     repo = "python-remote-pdb";
9     rev = "v${version}";
10     hash = "sha256-/7RysJOJigU4coC6d/Ob2lrtw8u8nLZI8wBk4oEEY3g=";
11   };
12   meta = with lib; {
13     description = "Remote vanilla PDB (over TCP sockets).";
14     homepage = "https://github.com/ionelmc/python-remote-pdb";
15     license = licenses.bsd2;
16     maintainers = with maintainers; [ mic92 ];
17     platforms = platforms.all;
18   };