summaryrefslogtreecommitdiffstats
path: root/pkgs
diff options
context:
space:
mode:
authorBenedikt Hunger <bene@aqtiv.de>2019-10-22 09:49:50 +0200
committerJon <jonringer@users.noreply.github.com>2019-10-28 01:40:52 -0700
commitb27bdf4ec8a02c1c956b15c344069f492b4babc6 (patch)
treefefb02d474eee29a53129251950b95f18209a6b4 /pkgs
parentba66b51a4e5d4b6d26fc37ad9d6805ce9f5aff76 (diff)
pythonPackages.qscintilla-qt5: fix build
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/python-modules/qscintilla-qt5/default.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/development/python-modules/qscintilla-qt5/default.nix b/pkgs/development/python-modules/qscintilla-qt5/default.nix
index 963ee82fedaa..96485bd1f062 100644
--- a/pkgs/development/python-modules/qscintilla-qt5/default.nix
+++ b/pkgs/development/python-modules/qscintilla-qt5/default.nix
@@ -27,6 +27,8 @@ buildPythonPackage {
lndir ${pyqt5} $out
rm -rf "$out/nix-support"
cd Python
+ substituteInPlace configure.py \
+ --replace "qmake = {'CONFIG': 'qscintilla2'}" "qmake = {'CONFIG': 'qscintilla2', 'QT': 'widgets printsupport'}"
${python.executable} ./configure.py \
--pyqt=PyQt5 \
--destdir=$out/${python.sitePackages}/PyQt5 \
@@ -45,6 +47,5 @@ buildPythonPackage {
license = licenses.lgpl21Plus;
maintainers = with maintainers; [ lsix ];
homepage = https://www.riverbankcomputing.com/software/qscintilla/;
- broken = true;
};
}