summary refs log tree commit diff
path: root/pkgs/applications/video/qarte
diff options
context:
space:
mode:
authorVincent Laporte <Vincent.Laporte@gmail.com>2019-08-27 05:39:43 +0000
committerVincent Laporte <Vincent.Laporte@gmail.com>2019-08-27 06:00:08 +0000
commitef15478313dccf73684d46816d20752ba5b18cf4 (patch)
treebee9c40e89924151521bddfbf7d2a410e52c635f /pkgs/applications/video/qarte
parente063d084de472cf0f7ab19d6785242970102a653 (diff)
qarte: use pyqt5_with_qtmultimedia
Otherwise, qarte fails at run-time with:

>     from PyQt5.QtMultimedia import QMediaPlayer
> ModuleNotFoundError: No module named 'PyQt5.QtMultimedia'
Diffstat (limited to 'pkgs/applications/video/qarte')
-rw-r--r--pkgs/applications/video/qarte/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/applications/video/qarte/default.nix b/pkgs/applications/video/qarte/default.nix
index bd70c84175ce7..cd6416032da2f 100644
--- a/pkgs/applications/video/qarte/default.nix
+++ b/pkgs/applications/video/qarte/default.nix
@@ -1,7 +1,7 @@
 { mkDerivation, lib, fetchbzr, python3, rtmpdump }:
 
 let
-  pythonEnv = python3.withPackages (ps: with ps; [ pyqt5 ]);
+  pythonEnv = python3.withPackages (ps: with ps; [ pyqt5_with_qtmultimedia ]);
 in mkDerivation {
   name = "qarte-4.6.0";
   src = fetchbzr {