mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-03-14 07:16:34 +01:00
This commit was created by a combination of scripts and tools: - an ast-grep script to prefix things in meta with `lib.`, - a modified nixf-diagnose / nixf combination to remove unused `with lib;`, and - regular nixfmt. Co-authored-by: Wolfgang Walther <walther@technowledgy.de>
23 lines
584 B
Nix
23 lines
584 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 = {
|
|
description = "Remote vanilla PDB (over TCP sockets)";
|
|
homepage = "https://github.com/ionelmc/python-remote-pdb";
|
|
license = lib.licenses.bsd2;
|
|
maintainers = with lib.maintainers; [ mic92 ];
|
|
platforms = lib.platforms.all;
|
|
};
|
|
}
|