diff options
| author | Martin Weinelt <hexa@darmstadt.ccc.de> | 2022-09-10 01:57:58 +0200 |
|---|---|---|
| committer | Martin Weinelt <hexa@darmstadt.ccc.de> | 2022-10-02 21:13:05 +0200 |
| commit | c4c7f4d700612cdeece46869e31c9945039ba950 (patch) | |
| tree | 95c12f0f020f50a39affbd9cbb70664a16c063ec /pkgs/development/python-modules/wxPython | |
| parent | 47324bf9644095836459fc8715f0085698dc030f (diff) | |
python3Packages.wxPython_4_1: propagate six
```
[...]
File "/nix/store/mmwa03ack302jfzhd98bqycimhji9s2m-python3.10-wxPython-4.1.1/lib/python3.10/site-packages/wx/lib/embeddedimage.py", line 18, in <module>
from six import BytesIO
ModuleNotFoundError: No module named 'six'
```
Diffstat (limited to 'pkgs/development/python-modules/wxPython')
| -rw-r--r-- | pkgs/development/python-modules/wxPython/4.1.nix | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/pkgs/development/python-modules/wxPython/4.1.nix b/pkgs/development/python-modules/wxPython/4.1.nix index 94fb10f113b3..5d9e4ff457a1 100644 --- a/pkgs/development/python-modules/wxPython/4.1.nix +++ b/pkgs/development/python-modules/wxPython/4.1.nix @@ -13,6 +13,7 @@ , wxGTK , pillow , numpy +, six , libXinerama , libSM , libXxf86vm @@ -70,7 +71,11 @@ buildPythonPackage rec { webkitgtk ]; - propagatedBuildInputs = [ pillow numpy ]; + propagatedBuildInputs = [ + pillow + numpy + six + ]; DOXYGEN = "${doxygen}/bin/doxygen"; |
