Skip to content

Commit

Permalink
poezio: add missing setuptools dependency
Browse files Browse the repository at this point in the history
(cherry picked from commit 0fa981b)
  • Loading branch information
lsix committed Jun 12, 2020
1 parent 158cfa6 commit b6cda51
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.12.1";

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 b6cda51

Please sign in to comment.