summary refs log tree commit diff
path: root/pkgs/top-level/python-packages.nix
diff options
context:
space:
mode:
authorFrederik Rietdijk <freddyrietdijk@fridh.nl>2016-05-31 10:47:22 +0200
committerFrederik Rietdijk <freddyrietdijk@fridh.nl>2016-05-31 10:47:22 +0200
commitcf32f82b8d8e8cc0e519e03b62fe77ad96c0232c (patch)
treee0f721fe11a1a8d51b791d801726b475112da3e0 /pkgs/top-level/python-packages.nix
parent45f9fd8c51313f9100ebfbcd2147700dec19364a (diff)
parent253634c4acb7f29cae84065a4ba70f2bf0ccf582 (diff)
downloadnixpkgs-cf32f82b8d8e8cc0e519e03b62fe77ad96c0232c.tar
nixpkgs-cf32f82b8d8e8cc0e519e03b62fe77ad96c0232c.tar.gz
nixpkgs-cf32f82b8d8e8cc0e519e03b62fe77ad96c0232c.tar.bz2
nixpkgs-cf32f82b8d8e8cc0e519e03b62fe77ad96c0232c.tar.lz
nixpkgs-cf32f82b8d8e8cc0e519e03b62fe77ad96c0232c.tar.xz
nixpkgs-cf32f82b8d8e8cc0e519e03b62fe77ad96c0232c.tar.zst
nixpkgs-cf32f82b8d8e8cc0e519e03b62fe77ad96c0232c.zip
Merge pull request #15764 from FRidh/wxpythoncleanup
Python: wxPython cleanup
Diffstat (limited to 'pkgs/top-level/python-packages.nix')
-rw-r--r--pkgs/top-level/python-packages.nix16
1 files changed, 6 insertions, 10 deletions
diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix
index c17f74e01f3..1d03a1a6f79 100644
--- a/pkgs/top-level/python-packages.nix
+++ b/pkgs/top-level/python-packages.nix
@@ -13067,6 +13067,7 @@ in modules // {
       description = "OpenSteno Plover stenography software";
       maintainers = with maintainers; [ twey kovirobi ];
       license = licenses.gpl2;
+      broken = true;
     };
 
     src = pkgs.fetchurl {
@@ -13074,7 +13075,8 @@ in modules // {
       sha256 = "1jja37nhiypdx1z6cazp8ffsf0z3yqmpdbprpdzf668lcb422rl0";
     };
 
-    propagatedBuildInputs = with self; [ wxPython30 pyserial hidapi xlib appdirs pkgs.wmctrl mock ];
+    buildInputs = with self; [ pytest ];
+    propagatedBuildInputs = with self; [ wxPython pyserial hidapi xlib appdirs pkgs.wmctrl mock ];
   };
 
   pygal = buildPythonPackage rec {
@@ -20064,7 +20066,7 @@ in modules // {
       sha256 = "61d03a13f1dcb3c1829f5a146da1fe0cc0e27947558a51e848b6d469902815ef";
     };
 
-    propagatedBuildInputs = [ self.squaremap self.wxPython28 ];
+    propagatedBuildInputs = with self; [ squaremap wxPython ];
 
     meta = {
       description = "GUI Viewer for Python profiling runs";
@@ -23477,15 +23479,9 @@ in modules // {
     };
   };
 
-  wxPython = self.wxPython28;
-
-  wxPython28 = import ../development/python-modules/wxPython/2.8.nix {
-    inherit callPackage;
-    wxGTK = pkgs.wxGTK28;
-  };
+  wxPython = self.wxPython30;
 
-  wxPython30 = import ../development/python-modules/wxPython/3.0.nix {
-    inherit callPackage;
+  wxPython30 = callPackage ../development/python-modules/wxPython/3.0.nix {
     wxGTK = pkgs.wxGTK30;
   };