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:
commit
c4122becaa
18
pkgs/development/python-modules/remote-pdb/default.nix
Normal file
18
pkgs/development/python-modules/remote-pdb/default.nix
Normal 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;
|
||||
};
|
||||
}
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue