summary refs log tree commit diff
path: root/pkgs/development/python-modules/wxPython/3.0.nix
blob: 4974daebb2bbf0f356f3a8b7a63da7fd8915f22b (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
26
27
28
29
{ stdenv, fetchurl, pkgconfig, wxGTK, pythonPackages, openglSupport ? true, python, isPyPy }:

assert wxGTK.unicode;

with stdenv.lib;

let version = "3.0.0.0"; in

if isPyPy then throw "wxPython-${version} not supported for interpreter ${python.executable}" else stdenv.mkDerivation {
  name = "wxPython-${version}";
  
  builder = ./builder3.0.sh;
  
  src = fetchurl {
    url = "mirror://sourceforge/wxpython/wxPython-src-${version}.tar.bz2";
    sha256 = "af88695e820dd914e8375dc91ecb736f6fb605979bb38460ace61bbea494dc11";
  };
  
  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;
  };
}