From 90cd659c562d3adce9fe1a745cd4db26ee83b7fd Mon Sep 17 00:00:00 2001 From: Jean-Philippe Braun Date: Mon, 16 Dec 2019 16:21:05 +0100 Subject: [PATCH] sonata: fix runtime error --- pkgs/applications/audio/sonata/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/audio/sonata/default.nix b/pkgs/applications/audio/sonata/default.nix index ce2a4e9d2c80..b9293fe27294 100644 --- a/pkgs/applications/audio/sonata/default.nix +++ b/pkgs/applications/audio/sonata/default.nix @@ -2,7 +2,7 @@ , python3Packages, gnome3, gtk3, gsettings-desktop-schemas, gobject-introspection }: let - inherit (python3Packages) buildPythonApplication isPy3k dbus-python pygobject3 mpd2; + inherit (python3Packages) buildPythonApplication isPy3k dbus-python pygobject3 mpd2 setuptools; in buildPythonApplication rec { pname = "sonata"; version = "1.7b1"; @@ -29,7 +29,7 @@ in buildPythonApplication rec { ''; propagatedBuildInputs = [ - gobject-introspection gtk3 pygobject3 + gobject-introspection gtk3 pygobject3 setuptools ]; # The optional tagpy dependency (for editing metadata) is not yet