2017-02-08 18:53:23 +00:00
|
|
|
{ stdenv, fetchurl, python2, emacs }:
|
2010-07-28 12:55:54 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2009-04-26 12:06:51 +01:00
|
|
|
name = "pydb-1.26";
|
|
|
|
|
2010-07-28 12:55:54 +01:00
|
|
|
src = fetchurl {
|
2013-02-05 19:34:49 +00:00
|
|
|
url = "mirror://sourceforge/sourceforge/bashdb/pydb-1.26.tar.bz2";
|
2009-04-26 12:06:51 +01:00
|
|
|
sha256 = "1wlkz1hd5d4gkzhkjkzcm650c1lchj28hj36jx96mklglm41h4q1";
|
|
|
|
};
|
|
|
|
|
2017-02-08 18:53:23 +00:00
|
|
|
buildInputs = [ python2 emacs /* emacs is optional */ ];
|
2009-04-26 12:06:51 +01:00
|
|
|
|
|
|
|
preConfigure = ''
|
|
|
|
p="$(toPythonPath $out)"
|
2017-02-09 07:52:22 +00:00
|
|
|
configureFlags="$configureFlags --with-python=${python2.interpreter} --with-site-packages=$p"
|
2009-04-26 12:06:51 +01:00
|
|
|
'';
|
|
|
|
|
2017-02-09 07:52:22 +00:00
|
|
|
meta = {
|
2010-07-28 12:55:54 +01:00
|
|
|
description = "Python debugger with GDB-like commands and Emacs bindings";
|
|
|
|
homepage = http://bashdb.sourceforge.net/pydb/;
|
2014-06-19 05:19:00 +01:00
|
|
|
license = stdenv.lib.licenses.gpl3;
|
2014-11-12 15:03:00 +00:00
|
|
|
platforms = stdenv.lib.platforms.all;
|
2009-04-26 12:06:51 +01:00
|
|
|
};
|
|
|
|
}
|