summary refs log tree commit diff
path: root/pkgs/applications/video/devede
diff options
context:
space:
mode:
authorJesse Wattenbarger <jwatt@broken.watch>2020-02-23 21:39:43 -0500
committerJon <jonringer@users.noreply.github.com>2020-02-23 22:27:30 -0800
commit8cbb538be5fc6422d4ba292bc2586ea3ee92474a (patch)
tree4189579b495017a0bab1344bdca0829e907d3477 /pkgs/applications/video/devede
parent9ad04f069c2df6a5a212a404a2a6177dc8f5a8f8 (diff)
downloadnixpkgs-8cbb538be5fc6422d4ba292bc2586ea3ee92474a.tar
nixpkgs-8cbb538be5fc6422d4ba292bc2586ea3ee92474a.tar.gz
nixpkgs-8cbb538be5fc6422d4ba292bc2586ea3ee92474a.tar.bz2
nixpkgs-8cbb538be5fc6422d4ba292bc2586ea3ee92474a.tar.lz
nixpkgs-8cbb538be5fc6422d4ba292bc2586ea3ee92474a.tar.xz
nixpkgs-8cbb538be5fc6422d4ba292bc2586ea3ee92474a.tar.zst
nixpkgs-8cbb538be5fc6422d4ba292bc2586ea3ee92474a.zip
devede: Add needed setuptools dependency
- devede_ng.py fails trying to import pkg_resources in a clean env w/o python3.7 installed
- Adding setuptools (which has pkg_resources) to the dependencies seems to fix it
Diffstat (limited to 'pkgs/applications/video/devede')
-rw-r--r--pkgs/applications/video/devede/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/applications/video/devede/default.nix b/pkgs/applications/video/devede/default.nix
index 388476cbf8e..aee6fab77a2 100644
--- a/pkgs/applications/video/devede/default.nix
+++ b/pkgs/applications/video/devede/default.nix
@@ -2,7 +2,7 @@
 , gtk3, gettext, wrapGAppsHook, gdk-pixbuf, gobject-introspection }:
 
 let
-  inherit (python3Packages) dbus-python buildPythonApplication pygobject3 urllib3;
+  inherit (python3Packages) dbus-python buildPythonApplication pygobject3 urllib3 setuptools;
 
 in buildPythonApplication {
   name = "devede-4.8.8";
@@ -34,7 +34,7 @@ in buildPythonApplication {
   ];
 
   propagatedBuildInputs = [
-    gtk3 pygobject3 gdk-pixbuf dbus-python ffmpeg mplayer dvdauthor vcdimager cdrkit urllib3
+    gtk3 pygobject3 gdk-pixbuf dbus-python ffmpeg mplayer dvdauthor vcdimager cdrkit urllib3 setuptools
   ];
 
   postPatch = ''