summary refs log tree commit diff
path: root/pkgs/development/python-modules/wxPython
diff options
context:
space:
mode:
authorMarc Weber <marco-oweber@gmx.de>2010-04-17 18:28:25 +0000
committerMarc Weber <marco-oweber@gmx.de>2010-04-17 18:28:25 +0000
commit8c0b7e4ad2c23b3bb9c71c431520096d4361942f (patch)
tree966d85d67800a84f43d3ac06722c81619b623b62 /pkgs/development/python-modules/wxPython
parent9e59164e5747235892f81ed6b6db67c63be89fe5 (diff)
downloadnixpkgs-8c0b7e4ad2c23b3bb9c71c431520096d4361942f.tar
nixpkgs-8c0b7e4ad2c23b3bb9c71c431520096d4361942f.tar.gz
nixpkgs-8c0b7e4ad2c23b3bb9c71c431520096d4361942f.tar.bz2
nixpkgs-8c0b7e4ad2c23b3bb9c71c431520096d4361942f.tar.lz
nixpkgs-8c0b7e4ad2c23b3bb9c71c431520096d4361942f.tar.xz
nixpkgs-8c0b7e4ad2c23b3bb9c71c431520096d4361942f.tar.zst
nixpkgs-8c0b7e4ad2c23b3bb9c71c431520096d4361942f.zip
- adding experimental python31 build
- cleanup python libraries:
 * moving all python libraries into a attr set into a directory
   so that expressions can be used for both: python 2.5 and 2.6 easily
 * disabling packages which don't build

svn path=/nixpkgs/trunk/; revision=21142
Diffstat (limited to 'pkgs/development/python-modules/wxPython')
-rw-r--r--pkgs/development/python-modules/wxPython/2.6.nix14
-rw-r--r--pkgs/development/python-modules/wxPython/2.8.nix14
-rw-r--r--pkgs/development/python-modules/wxPython/builder.sh17
3 files changed, 0 insertions, 45 deletions
diff --git a/pkgs/development/python-modules/wxPython/2.6.nix b/pkgs/development/python-modules/wxPython/2.6.nix
deleted file mode 100644
index ad8c39b4ea7..00000000000
--- a/pkgs/development/python-modules/wxPython/2.6.nix
+++ /dev/null
@@ -1,14 +0,0 @@
-{stdenv, fetchurl, pkgconfig, wxGTK, python}:
-
-assert wxGTK.unicode;
-
-stdenv.mkDerivation {
-  name = "wxPython-2.6.3.3";
-  builder = ./builder.sh;
-  src = fetchurl {
-    url = mirror://sourceforge/wxpython/wxPython-src-2.6.3.3.tar.bz2;
-    md5 = "66b9c5f8e20a9505c39dab1a1234daa9";
-  };
-  buildInputs = [pkgconfig wxGTK (wxGTK.gtk) python];
-  inherit wxGTK; # !!! move this down
-}
diff --git a/pkgs/development/python-modules/wxPython/2.8.nix b/pkgs/development/python-modules/wxPython/2.8.nix
deleted file mode 100644
index 5cab740f8c3..00000000000
--- a/pkgs/development/python-modules/wxPython/2.8.nix
+++ /dev/null
@@ -1,14 +0,0 @@
-{stdenv, fetchurl, pkgconfig, wxGTK, python}:
-
-assert wxGTK.unicode;
-
-stdenv.mkDerivation {
-  name = "wxPython-2.8.4.0";
-  builder = ./builder.sh;
-  src = fetchurl {
-    url = mirror://sourceforge/wxpython/wxPython-src-2.8.4.0.tar.bz2;
-    sha256 = "0lkj29jcw3kqaf2iphgmmn9cqf2ppkm6qqr9izlx4bvn9dihgq6h";
-  };
-  buildInputs = [pkgconfig wxGTK (wxGTK.gtk) python];
-  passthru = {inherit wxGTK;};
-}
diff --git a/pkgs/development/python-modules/wxPython/builder.sh b/pkgs/development/python-modules/wxPython/builder.sh
deleted file mode 100644
index ed7177081f9..00000000000
--- a/pkgs/development/python-modules/wxPython/builder.sh
+++ /dev/null
@@ -1,17 +0,0 @@
-source $stdenv/setup
-
-flags="WXPORT=gtk2 NO_HEADERS=1 BUILD_GLCANVAS=0 BUILD_OGL=0 UNICODE=1"
-
-configurePhase() {
-    cd wxPython
-}
-
-buildPhase() {
-    python setup.py $flags build
-}
-
-installPhase() {
-    python setup.py $flags install --prefix=$out
-}
-
-genericBuild