diff options
| author | Martin Weinelt <hexa@darmstadt.ccc.de> | 2022-09-12 14:41:18 +0200 |
|---|---|---|
| committer | Martin Weinelt <hexa@darmstadt.ccc.de> | 2022-10-02 21:13:05 +0200 |
| commit | 47324bf9644095836459fc8715f0085698dc030f (patch) | |
| tree | cb85b5518918effd8fde5bc9336b2eea4746c32d /pkgs/development/python-modules/wxPython | |
| parent | 7994821acc7990b05c63aa75535caa2b8f6ab015 (diff) | |
python3Packages.wxPython_4_0: propagate six
Diffstat (limited to 'pkgs/development/python-modules/wxPython')
| -rw-r--r-- | pkgs/development/python-modules/wxPython/4.0.nix | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/pkgs/development/python-modules/wxPython/4.0.nix b/pkgs/development/python-modules/wxPython/4.0.nix index 3a86ef4c6390..797fd3470d0c 100644 --- a/pkgs/development/python-modules/wxPython/4.0.nix +++ b/pkgs/development/python-modules/wxPython/4.0.nix @@ -20,6 +20,7 @@ , CoreFoundation , pillow , numpy +, six }: buildPythonPackage rec { @@ -44,7 +45,11 @@ buildPythonPackage rec { [ wxGTK.gtk ] ); - propagatedBuildInputs = [ pillow numpy ]; + propagatedBuildInputs = [ + numpy + pillow + six + ]; DOXYGEN = "${doxygen}/bin/doxygen"; |
