Files
nixpkgs/pkgs/development/python-modules/wxPython/2.6.nix
T

19 lines
441 B
Nix
Raw Normal View History

{ stdenv, fetchurl, pkgconfig, wxGTK, pythonPackages }:
2004-02-17 19:19:26 +00:00
assert wxGTK.unicode;
2004-02-17 19:19:26 +00:00
2004-03-29 17:23:01 +00:00
stdenv.mkDerivation {
2006-12-13 20:30:09 +00:00
name = "wxPython-2.6.3.3";
2004-02-17 19:19:26 +00:00
builder = ./builder.sh;
2004-02-17 19:19:26 +00:00
src = fetchurl {
url = mirror://sourceforge/wxpython/wxPython-src-2.6.3.3.tar.bz2;
2006-12-13 20:30:09 +00:00
md5 = "66b9c5f8e20a9505c39dab1a1234daa9";
2004-02-17 19:19:26 +00:00
};
buildInputs = [ pkgconfig wxGTK (wxGTK.gtk) pythonPackages.python pythonPackages.wrapPython ];
passthru = { inherit wxGTK; };
2006-12-13 20:30:09 +00:00
}