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

21 lines
502 B
Nix
Raw Normal View History

2011-05-03 16:57:18 +00:00
{ stdenv, fetchurl, pkgconfig, wxGTK, pythonPackages }:
assert wxGTK.unicode;
2011-09-20 11:19:55 +00:00
let version = "2.8.12.1"; in
stdenv.mkDerivation {
2011-09-20 11:19:55 +00:00
name = "wxPython-${version}";
2011-05-03 16:57:18 +00:00
builder = ./builder.sh;
2011-05-03 16:57:18 +00:00
src = fetchurl {
2011-09-20 11:19:55 +00:00
url = "mirror://sourceforge/wxpython/wxPython-src-${version}.tar.bz2";
sha256 = "1l1w4i113csv3bd5r8ybyj0qpxdq83lj6jrc5p7cc10mkwyiagqz";
};
2011-05-03 16:57:18 +00:00
buildInputs = [ pkgconfig wxGTK (wxGTK.gtk) pythonPackages.python pythonPackages.wrapPython ];
passthru = { inherit wxGTK; };
}