Unverified Commit 0b593aa4 authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

Merge pull request #313263 from natsukium/ipdbplugin/drop

python311Packages.ipdbplugin: drop
parents 67d143cc 12c14993
Loading
Loading
Loading
Loading
+0 −27
Original line number Diff line number Diff line
{ lib
, buildPythonPackage
, fetchPypi
, nose
, ipython
}:

buildPythonPackage rec {
  pname = "ipdbplugin";
  version = "1.5.0";
  format = "setuptools";

  src = fetchPypi {
    inherit pname version;
    sha256 = "cdcd6bc1e995c3c2c4971ed95f207e680aa44980b716fa43fb675ff2dcc7894f";
  };

  propagatedBuildInputs = [ nose ipython ];

  meta = with lib; {
    homepage = "https://github.com/flavioamieiro/nose-ipdb/tree/master";
    description = "Nose plugin to use iPdb instead of Pdb when tests fail";
    license = licenses.lgpl2;
    maintainers = [ ];
  };

}
+1 −0
Original line number Diff line number Diff line
@@ -229,6 +229,7 @@ mapAliases ({
  imgaug = throw "imgaug has been removed as it is no longer maintained"; # added 2023-07-10
  intreehook =  throw "intreehooks has been removed because it is obsolete as a backend-path key was added to PEP 517"; # added 2023-04-11
  ipaddress = throw "ipaddress has been removed because it is no longer required since python 2.7."; # added 2022-05-30
  ipdbplugin = throw "ipdbplugin has been removed because it has no longer maintained for 6 years";  # added 2024-05-21
  ipython_genutils = ipython-genutils; # added 2023-10-12
  influxgraph = throw "influxgraph has been removed because it is no longer maintained"; # added 2022-07-10
  itanium_demangler = itanium-demangler; # added 2022-10-17
+0 −2
Original line number Diff line number Diff line
@@ -5867,8 +5867,6 @@ self: super: with self; {
  ipdb = callPackage ../development/python-modules/ipdb { };
  ipdbplugin = callPackage ../development/python-modules/ipdbplugin { };
  ipfshttpclient = callPackage ../development/python-modules/ipfshttpclient { };
  i-pi = callPackage ../development/python-modules/i-pi { };