about summary refs log tree commit diff
path: root/pkgs/development/python-modules/remote-pdb/default.nix
blob: 796875196a21aee778547d17d1ab7413693cd3cf (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
  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;
  };
}