about summary refs log tree commit diff
diff options
context:
space:
mode:
authorKonstantin Alekseev <mail@kalekseev.com>2020-06-25 23:58:51 +0300
committerKonstantin Alekseev <mail@kalekseev.com>2020-06-25 23:58:51 +0300
commitec1fd469c1949fe310f389f4a3b3ec9968965bfd (patch)
tree8fffe4753b32b90ae86f3582c20a104bf03a27b6
parent3eb4864c8b7c51f050c41fd4fad4a5fb112f6bd1 (diff)
greg: add setuptools to propagatedBuildInputs
-rw-r--r--pkgs/applications/audio/greg/default.nix3
1 files changed, 1 insertions, 2 deletions
diff --git a/pkgs/applications/audio/greg/default.nix b/pkgs/applications/audio/greg/default.nix
index e027680f5fe64..c243a81ac2ebe 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";