about summary refs log tree commit diff
path: root/pkgs/development/python-modules/wxPython
diff options
context:
space:
mode:
authorDomen Kožar <domen@dev.si>2014-11-04 18:18:48 +0100
committerDomen Kožar <domen@dev.si>2014-11-04 18:19:27 +0100
commitb598f6af591fca42892530c867c4a2c80ba6c8c8 (patch)
treedd7c5fae41d9606d4bb00e30ff6ce66c66f05a53 /pkgs/development/python-modules/wxPython
parentca9097335d13e3ad5f032c6e1a06bf8673b4736e (diff)
downloadnixlib-b598f6af591fca42892530c867c4a2c80ba6c8c8.tar
nixlib-b598f6af591fca42892530c867c4a2c80ba6c8c8.tar.gz
nixlib-b598f6af591fca42892530c867c4a2c80ba6c8c8.tar.bz2
nixlib-b598f6af591fca42892530c867c4a2c80ba6c8c8.tar.lz
nixlib-b598f6af591fca42892530c867c4a2c80ba6c8c8.tar.xz
nixlib-b598f6af591fca42892530c867c4a2c80ba6c8c8.tar.zst
nixlib-b598f6af591fca42892530c867c4a2c80ba6c8c8.zip
pythonPackages.runsnakerun: add performance/memory GUI profiler for python
Diffstat (limited to 'pkgs/development/python-modules/wxPython')
-rw-r--r--pkgs/development/python-modules/wxPython/2.8.nix4
-rw-r--r--pkgs/development/python-modules/wxPython/3.0.nix6
2 files changed, 9 insertions, 1 deletions
diff --git a/pkgs/development/python-modules/wxPython/2.8.nix b/pkgs/development/python-modules/wxPython/2.8.nix
index 64dd59242c2d..a6fd0100f587 100644
--- a/pkgs/development/python-modules/wxPython/2.8.nix
+++ b/pkgs/development/python-modules/wxPython/2.8.nix
@@ -17,4 +17,8 @@ if isPyPy then throw "wxPython-${version} not supported for interpreter ${python
   buildInputs = [ pkgconfig wxGTK (wxGTK.gtk) pythonPackages.python pythonPackages.wrapPython ];
   
   passthru = { inherit wxGTK; };
+
+  meta = {
+    platforms = stdenv.lib.platforms.all;
+  };
 }
diff --git a/pkgs/development/python-modules/wxPython/3.0.nix b/pkgs/development/python-modules/wxPython/3.0.nix
index 4f89dbeb4105..4974daebb2bb 100644
--- a/pkgs/development/python-modules/wxPython/3.0.nix
+++ b/pkgs/development/python-modules/wxPython/3.0.nix
@@ -22,4 +22,8 @@ if isPyPy then throw "wxPython-${version} not supported for interpreter ${python
   inherit openglSupport;
 
   passthru = { inherit wxGTK openglSupport; };
-}
+  
+  meta = {
+    platforms = stdenv.lib.platforms.all;
+  };
+}
\ No newline at end of file