commit
9d3721be63
@ -1,25 +0,0 @@
|
||||
{ lib, stdenv, fetchurl, python2, emacs }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "pydb";
|
||||
version = "1.26";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://sourceforge/sourceforge/bashdb/${pname}-${version}.tar.bz2";
|
||||
sha256 = "1wlkz1hd5d4gkzhkjkzcm650c1lchj28hj36jx96mklglm41h4q1";
|
||||
};
|
||||
|
||||
buildInputs = [ python2 emacs /* emacs is optional */ ];
|
||||
|
||||
preConfigure = ''
|
||||
p="$(toPythonPath $out)"
|
||||
configureFlags="$configureFlags --with-python=${python2.interpreter} --with-site-packages=$p"
|
||||
'';
|
||||
|
||||
meta = {
|
||||
description = "Python debugger with GDB-like commands and Emacs bindings";
|
||||
homepage = "http://bashdb.sourceforge.net/pydb/";
|
||||
license = lib.licenses.gpl3;
|
||||
platforms = lib.platforms.all;
|
||||
};
|
||||
}
|
@ -1044,6 +1044,7 @@ mapAliases ({
|
||||
pulseaudioLight = throw "'pulseaudioLight' has been renamed to/replaced by 'pulseaudio'"; # Converted to throw 2022-02-22
|
||||
pulseeffects = throw "Use pulseeffects-legacy if you use PulseAudio and easyeffects if you use PipeWire"; # Added 2021-02-13
|
||||
pulseeffects-pw = easyeffects; # Added 2021-07-07
|
||||
pydb = throw "pydb has been removed: abandoned by upstream"; # Added 2022-04-22
|
||||
pyIRCt = throw "pyIRCt has been removed from nixpkgs as it is unmaintained and python2-only";
|
||||
pyMAILt = throw "pyMAILt has been removed from nixpkgs as it is unmaintained and python2-only";
|
||||
pybind11 = throw "pybind11 was removed because pythonPackages.pybind11 for the appropriate version of Python should be used"; # Added 2021-05-14
|
||||
|
@ -9488,8 +9488,6 @@ with pkgs;
|
||||
|
||||
pycflow2dot = with python3.pkgs; toPythonApplication pycflow2dot;
|
||||
|
||||
pydb = callPackage ../development/tools/pydb { };
|
||||
|
||||
pydf = callPackage ../applications/misc/pydf { };
|
||||
|
||||
pyinfra = with python3Packages; toPythonApplication pyinfra;
|
||||
|
Loading…
Reference in New Issue
Block a user