Skip to content

Commit

Permalink
Merge pull request #91553 from regnat/fix-termdown-20.03
Browse files Browse the repository at this point in the history
Fix termdown for 20.03
  • Loading branch information
worldofpeace committed Sep 8, 2020
2 parents 54a8612 + 3354468 commit a675cea
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions pkgs/applications/misc/termdown/default.nix
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{ stdenv, fetchFromGitHub, buildPythonApplication,
click, pyfiglet, dateutil}:
click, pyfiglet, dateutil, setuptools}:

with stdenv.lib;

Expand All @@ -15,7 +15,11 @@ buildPythonApplication rec {
owner = "trehn";
};

propagatedBuildInputs = [ dateutil click pyfiglet ];
propagatedBuildInputs = [ dateutil click pyfiglet setuptools ];

checkPhase = ''
${placeholder "out"}/bin/termdown --no-figlet 1
'';

meta = with stdenv.lib; {
description = "Starts a countdown to or from TIMESPEC";
Expand Down

0 comments on commit a675cea

Please sign in to comment.