summary refs log tree commit diff
path: root/pkgs/development/python-modules/wxPython/3.0.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/wxPython/3.0.nix')
-rw-r--r--pkgs/development/python-modules/wxPython/3.0.nix30
1 files changed, 5 insertions, 25 deletions
diff --git a/pkgs/development/python-modules/wxPython/3.0.nix b/pkgs/development/python-modules/wxPython/3.0.nix
index 4974daebb2bb..6892d7e87298 100644
--- a/pkgs/development/python-modules/wxPython/3.0.nix
+++ b/pkgs/development/python-modules/wxPython/3.0.nix
@@ -1,29 +1,9 @@
-{ stdenv, fetchurl, pkgconfig, wxGTK, pythonPackages, openglSupport ? true, python, isPyPy }:
+{ callPackage, ... } @ args:
 
-assert wxGTK.unicode;
+callPackage ./generic.nix (args // rec {
 
-with stdenv.lib;
+  version = "3.0.2.0";
 
-let version = "3.0.0.0"; in
+  sha256 = "0qfzx3sqx4mwxv99sfybhsij4b5pc03ricl73h4vhkzazgjjjhfm";
 
-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;
-  };
-}
\ No newline at end of file
+})