Skip to content

Commit

Permalink
poezio: add missing setuptools dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
lsix authored and Jon committed May 27, 2020
1 parent fa01075 commit 0fa981b
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{ 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";

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 {
Expand Down

0 comments on commit 0fa981b

Please sign in to comment.