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