mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
001999e25b
Since this package symlinks pyqt5 in its own tree, propagating pyqt5 is detected as a conflict by our python setup hook.
51 lines
1.4 KiB
Nix
51 lines
1.4 KiB
Nix
{ lib
|
|
, pythonPackages
|
|
, qscintilla
|
|
, lndir
|
|
, qtbase
|
|
}:
|
|
with pythonPackages;
|
|
buildPythonPackage {
|
|
pname = "qscintilla";
|
|
version = qscintilla.version;
|
|
src = qscintilla.src;
|
|
format = "other";
|
|
|
|
nativeBuildInputs = [ lndir sip qtbase ];
|
|
buildInputs = [ qscintilla pyqt5 ];
|
|
|
|
postPatch = ''
|
|
substituteInPlace Python/configure.py \
|
|
--replace \
|
|
"target_config.py_module_dir" \
|
|
"'$out/${python.sitePackages}'"
|
|
'';
|
|
|
|
preConfigure = ''
|
|
mkdir -p $out
|
|
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 \
|
|
--stubsdir=$out/${python.sitePackages}/PyQt5 \
|
|
--apidir=$out/api/${python.libPrefix} \
|
|
--qsci-incdir=${qscintilla}/include \
|
|
--qsci-featuresdir=${qscintilla}/mkspecs/features \
|
|
--qsci-libdir=${qscintilla}/lib \
|
|
--pyqt-sipdir=${pyqt5}/share/sip/PyQt5 \
|
|
--qsci-sipdir=$out/share/sip/PyQt5 \
|
|
--sip-incdir=${sip}/include
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "A Python binding to QScintilla, Qt based text editing control";
|
|
license = licenses.lgpl21Plus;
|
|
maintainers = with maintainers; [ lsix ];
|
|
homepage = https://www.riverbankcomputing.com/software/qscintilla/;
|
|
};
|
|
}
|