summaryrefslogtreecommitdiffstats
path: root/pkgs/development/python-modules
diff options
context:
space:
mode:
authorFrederik Rietdijk <fridh@fridh.nl>2016-05-27 21:37:09 +0200
committerFrederik Rietdijk <fridh@fridh.nl>2016-05-27 21:37:09 +0200
commit253634c4acb7f29cae84065a4ba70f2bf0ccf582 (patch)
tree1a6f943824605b75f00b4eac4cff3f68c99b9dec /pkgs/development/python-modules
parent218869e6952eb18316e218476cb7896c5f44aa8f (diff)
pythonPackages.wxPython28: remove package
Diffstat (limited to 'pkgs/development/python-modules')
-rw-r--r--pkgs/development/python-modules/wxPython/2.8.nix39
1 files changed, 0 insertions, 39 deletions
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 12027f54ff82..000000000000
--- a/pkgs/development/python-modules/wxPython/2.8.nix
+++ /dev/null
@@ -1,39 +0,0 @@
-{ fetchurl
-, lib
-, pythonPackages
-, openglSupport ? true
-, libX11
-, wxGTK
-, pkgconfig
-}:
-
-assert wxGTK.unicode;
-
-with pythonPackages;
-
-buildPythonPackage rec {
- name = "wxPython-${version}";
- version = "2.8.12.1";
-
- disabled = isPy3k || isPyPy;
- doCheck = false;
-
- src = fetchurl {
- url = "mirror://sourceforge/wxpython/wxPython-src-${version}.tar.bz2";
- sha256 = "1l1w4i113csv3bd5r8ybyj0qpxdq83lj6jrc5p7cc10mkwyiagqz";
- };
-
- propagatedBuildInputs = [ pkgconfig wxGTK (wxGTK.gtk) libX11 ] ++ lib.optional openglSupport pyopengl;
- preConfigure = "cd wxPython";
-
- NIX_LDFLAGS = "-lX11 -lgdk-x11-2.0";
-
- buildPhase = "";
-
- installPhase = ''
- ${python.interpreter} setup.py install WXPORT=gtk2 NO_HEADERS=1 BUILD_GLCANVAS=${if openglSupport then "1" else "0"} UNICODE=1 --prefix=$out
- wrapPythonPrograms
- '';
-
- passthru = { inherit wxGTK openglSupport; };
-}