From ec1fd469c1949fe310f389f4a3b3ec9968965bfd Mon Sep 17 00:00:00 2001 From: Konstantin Alekseev Date: Thu, 25 Jun 2020 23:58:51 +0300 Subject: [PATCH] greg: add setuptools to propagatedBuildInputs --- pkgs/applications/audio/greg/default.nix | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/pkgs/applications/audio/greg/default.nix b/pkgs/applications/audio/greg/default.nix index e027680f5fe6..c243a81ac2eb 100644 --- a/pkgs/applications/audio/greg/default.nix +++ b/pkgs/applications/audio/greg/default.nix @@ -13,8 +13,7 @@ with pythonPackages; buildPythonApplication rec { sha256 = "0bdzgh2k1ppgcvqiasxwp3w89q44s4jgwjidlips3ixx1bzm822v"; }; - buildInputs = with pythonPackages; [ feedparser ]; - propagatedBuildInputs = buildInputs; + propagatedBuildInputs = [ setuptools feedparser ]; meta = with stdenv.lib; { homepage = "https://github.com/manolomartinez/greg";