python3Packages.wxPython4_1: fix build

This commit is contained in:
Frederik Rietdijk 2022-10-04 14:05:52 +02:00 committed by Frederik Rietdijk
parent 081db4e4b7
commit b794e83b39

View File

@ -2,6 +2,7 @@
, stdenv
, fetchPypi
, buildPythonPackage
, setuptools
, which
, pkg-config
, python
@ -33,6 +34,7 @@ buildPythonPackage rec {
pname = "wxPython";
version = "4.1.1";
disabled = isPy27;
format = "other";
src = fetchPypi {
inherit pname version;
@ -48,6 +50,7 @@ buildPythonPackage rec {
doxygen
wxGTK.gtk
pkg-config
setuptools
] ++ lib.optionals stdenv.isLinux [
autoPatchelfHook
];