about summary refs log tree commit diff
path: root/pkgs/development/python-modules
diff options
context:
space:
mode:
authorBen Darwin <bcdarwin@gmail.com>2020-04-09 12:43:10 -0400
committerJon <jonringer@users.noreply.github.com>2020-04-09 10:04:04 -0700
commit0473d4d62e8f1a790251701aedaaaaf3980ae5b6 (patch)
tree12fb0583c66199e13c72ea1330efec8e134c6c03 /pkgs/development/python-modules
parente67d840931d235e882f8c35d1615885f99be8911 (diff)
downloadnixlib-0473d4d62e8f1a790251701aedaaaaf3980ae5b6.tar
nixlib-0473d4d62e8f1a790251701aedaaaaf3980ae5b6.tar.gz
nixlib-0473d4d62e8f1a790251701aedaaaaf3980ae5b6.tar.bz2
nixlib-0473d4d62e8f1a790251701aedaaaaf3980ae5b6.tar.lz
nixlib-0473d4d62e8f1a790251701aedaaaaf3980ae5b6.tar.xz
nixlib-0473d4d62e8f1a790251701aedaaaaf3980ae5b6.tar.zst
nixlib-0473d4d62e8f1a790251701aedaaaaf3980ae5b6.zip
python2Packages.traitsui: remove optional wxPython dependency
Diffstat (limited to 'pkgs/development/python-modules')
-rw-r--r--pkgs/development/python-modules/traitsui/default.nix10
1 files changed, 5 insertions, 5 deletions
diff --git a/pkgs/development/python-modules/traitsui/default.nix b/pkgs/development/python-modules/traitsui/default.nix
index 8e7a5643d70e..617ba227c41e 100644
--- a/pkgs/development/python-modules/traitsui/default.nix
+++ b/pkgs/development/python-modules/traitsui/default.nix
@@ -1,5 +1,5 @@
-{ stdenv, fetchPypi, buildPythonPackage
-, traits, pyface, wxPython
+{ lib, fetchPypi, buildPythonPackage
+, traits, pyface, six
 }:
 
 buildPythonPackage rec {
@@ -11,14 +11,14 @@ buildPythonPackage rec {
     sha256 = "0kw1xy5ax6l0lzmk7pfzjw6qs0idv78k3118my7cbvw1n5iiff28";
   };
 
-  propagatedBuildInputs = [ traits pyface wxPython ];
+  propagatedBuildInputs = [ traits pyface six ];
 
   doCheck = false; # Needs X server
 
-  meta = with stdenv.lib; {
+  meta = with lib; {
     description = "Traits-capable windowing framework";
     homepage = "https://github.com/enthought/traitsui";
-    maintainers = with stdenv.lib.maintainers; [ knedlsepp ];
+    maintainers = with maintainers; [ knedlsepp ];
     license = licenses.bsdOriginal;
   };
 }