about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/tools/pydb/default.nix
blob: 5380bb6860853cbdaa245aed48b614d3bed093d7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{ 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;
  };
}