From 8cbb538be5fc6422d4ba292bc2586ea3ee92474a Mon Sep 17 00:00:00 2001 From: Jesse Wattenbarger Date: Sun, 23 Feb 2020 21:39:43 -0500 Subject: [PATCH] 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 --- pkgs/applications/video/devede/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/video/devede/default.nix b/pkgs/applications/video/devede/default.nix index 388476cbf8e7..aee6fab77a23 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 = ''