about summary refs log tree commit diff
path: root/pkgs/applications/networking
diff options
context:
space:
mode:
authorLancelot SIX <lsix@lancelotsix.com>2020-05-27 09:56:50 +0100
committerJon <jonringer@users.noreply.github.com>2020-05-27 09:15:19 -0700
commit0fa981bfbec38e620f92d6b812f3edf0d7401be7 (patch)
tree1ba4dc3382cdefd4c8769f2960fdd086e3bb8493 /pkgs/applications/networking
parentfa010755a81f5292acecaa0432347fd6fdf043ec (diff)
downloadnixlib-0fa981bfbec38e620f92d6b812f3edf0d7401be7.tar
nixlib-0fa981bfbec38e620f92d6b812f3edf0d7401be7.tar.gz
nixlib-0fa981bfbec38e620f92d6b812f3edf0d7401be7.tar.bz2
nixlib-0fa981bfbec38e620f92d6b812f3edf0d7401be7.tar.lz
nixlib-0fa981bfbec38e620f92d6b812f3edf0d7401be7.tar.xz
nixlib-0fa981bfbec38e620f92d6b812f3edf0d7401be7.tar.zst
nixlib-0fa981bfbec38e620f92d6b812f3edf0d7401be7.zip
poezio: add missing setuptools dependency
Diffstat (limited to 'pkgs/applications/networking')
-rw-r--r--pkgs/applications/networking/instant-messengers/poezio/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/applications/networking/instant-messengers/poezio/default.nix b/pkgs/applications/networking/instant-messengers/poezio/default.nix
index 0f07ee975490..485ceb2080fd 100644
--- a/pkgs/applications/networking/instant-messengers/poezio/default.nix
+++ b/pkgs/applications/networking/instant-messengers/poezio/default.nix
@@ -1,5 +1,5 @@
 { lib, buildPythonApplication, fetchFromGitHub, pythonOlder
-, pytest, aiodns, slixmpp, pyinotify, potr, mpd2, cffi, pkgconfig }:
+, pytest, aiodns, slixmpp, pyinotify, potr, mpd2, cffi, pkgconfig, setuptools }:
 buildPythonApplication rec {
     pname = "poezio";
     version = "0.13";
@@ -7,7 +7,7 @@ buildPythonApplication rec {
     disabled = pythonOlder "3.4";
 
     checkInputs = [ pytest ];
-    propagatedBuildInputs = [ aiodns slixmpp pyinotify potr mpd2 cffi ];
+    propagatedBuildInputs = [ aiodns slixmpp pyinotify potr mpd2 cffi setuptools ];
     nativeBuildInputs = [ pkgconfig ];
 
     src = fetchFromGitHub {