nixpkgs/pkgs/development/python-modules/wxPython/3.0.nix

30 lines
824 B
Nix
Raw Normal View History

2014-09-11 12:29:20 +00:00
{ stdenv, fetchurl, pkgconfig, wxGTK, pythonPackages, openglSupport ? true, python, isPyPy }:
2014-03-25 21:32:39 +00:00
assert wxGTK.unicode;
with stdenv.lib;
2015-08-15 08:03:12 +00:00
let version = "3.0.2.0"; in
2014-03-25 21:32:39 +00:00
2014-09-11 12:29:20 +00:00
if isPyPy then throw "wxPython-${version} not supported for interpreter ${python.executable}" else stdenv.mkDerivation {
2014-03-25 21:32:39 +00:00
name = "wxPython-${version}";
builder = ./builder3.0.sh;
src = fetchurl {
url = "mirror://sourceforge/wxpython/wxPython-src-${version}.tar.bz2";
2015-08-15 08:03:12 +00:00
sha256 = "0qfzx3sqx4mwxv99sfybhsij4b5pc03ricl73h4vhkzazgjjjhfm";
2014-03-25 21:32:39 +00:00
};
buildInputs = [ pkgconfig wxGTK (wxGTK.gtk) pythonPackages.python pythonPackages.wrapPython ]
++ optional openglSupport pythonPackages.pyopengl;
inherit openglSupport;
passthru = { inherit wxGTK openglSupport; };
meta = {
platforms = stdenv.lib.platforms.all;
};
2015-08-15 08:03:12 +00:00
}