Merge pull request #99538 from vividn/patch-1
qtile: add missing python package dependencies
This commit is contained in:
commit
46fac2ff10
|
@ -34,7 +34,18 @@ python37Packages.buildPythonApplication rec {
|
||||||
nativeBuildInputs = [ pkgconfig ];
|
nativeBuildInputs = [ pkgconfig ];
|
||||||
buildInputs = [ glib libxcb cairo pango python37Packages.xcffib ];
|
buildInputs = [ glib libxcb cairo pango python37Packages.xcffib ];
|
||||||
|
|
||||||
pythonPath = with python37Packages; [ xcffib cairocffi-xcffib setuptools setuptools_scm ];
|
pythonPath = with python37Packages; [
|
||||||
|
xcffib
|
||||||
|
cairocffi-xcffib
|
||||||
|
setuptools
|
||||||
|
setuptools_scm
|
||||||
|
dateutil
|
||||||
|
dbus-python
|
||||||
|
mpd2
|
||||||
|
psutil
|
||||||
|
pyxdg
|
||||||
|
pygobject3
|
||||||
|
];
|
||||||
|
|
||||||
postInstall = ''
|
postInstall = ''
|
||||||
wrapProgram $out/bin/qtile \
|
wrapProgram $out/bin/qtile \
|
||||||
|
|
Loading…
Reference in New Issue