mirage-im: update python dependencies

This commit is contained in:
be7a 2022-01-18 23:31:37 +01:00
parent 3feb74114f
commit 5e851a1f9b

View file

@ -47,22 +47,24 @@ mkDerivation rec {
] ++ pythonPath;
pythonPath = with python3Packages; [
pillow
aiofiles
appdirs
blist
cairosvg
filetype
html-sanitizer
hsluv
matrix-nio
lxml
mistune
plyer
pymediainfo
pyotherside
plyer
sortedcontainers
watchgod
redbaron
hsluv
simpleaudio
setuptools
watchgod
dbus-python
];
qmakeFlags = [
@ -84,6 +86,6 @@ mkDerivation rec {
license = licenses.lgpl3Plus;
maintainers = with maintainers; [ colemickens AndersonTorres ];
inherit (qtbase.meta) platforms;
broken = stdenv.isDarwin;
broken = stdenv.isDarwin || python3Packages.isPy37 || python3Packages.isPy38;
};
}