3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #212976 from Mic92/remote-pdb

python3.pkgs.remote-pdb: init at 2.1.0
This commit is contained in:
Jörg Thalheim 2023-01-31 13:52:19 +00:00 committed by GitHub
commit c4122becaa
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 20 additions and 0 deletions

View file

@ -0,0 +1,18 @@
{ buildPythonPackage, fetchFromGitHub, lib }:
buildPythonPackage rec {
pname = "remote-pdb";
version = "2.1.0";
src = fetchFromGitHub {
owner = "ionelmc";
repo = "python-remote-pdb";
rev = "v${version}";
sha256 = "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;
};
}

View file

@ -9884,6 +9884,8 @@ self: super: with self; {
remi = callPackage ../development/python-modules/remi { };
remote-pdb = callPackage ../development/python-modules/remote-pdb { };
renault-api = callPackage ../development/python-modules/renault-api { };
rencode = callPackage ../development/python-modules/rencode { };