Merge pull request #87535 from r-ryantm/auto-update/termdown

termdown: 1.16.0 -> 1.17.0
This commit is contained in:
Mario Rodas 2020-05-10 17:49:58 -05:00 committed by GitHub
commit a5c51cf498
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 18 additions and 16 deletions

View File

@ -1,27 +1,29 @@
{ stdenv, fetchFromGitHub, buildPythonApplication, { stdenv
click, pyfiglet, dateutil}: , fetchFromGitHub
, buildPythonApplication
with stdenv.lib; , click
, pyfiglet
, dateutil
, setuptools
}:
buildPythonApplication rec { buildPythonApplication rec {
pname = "termdown"; pname = "termdown";
version = "1.16.0"; version = "1.17.0";
src = fetchFromGitHub { src = fetchFromGitHub {
rev = version; rev = version;
sha256 = "0k429ss1xifm9vbgyzpp71r79byn9jclvr0rm77bai2r8nz3s2vf"; sha256 = "1sd9z5n2a4ir35832wgxs68vwav7wxhq39b5h8pq934mp8sl3v2k";
repo = "termdown"; repo = "termdown";
owner = "trehn"; owner = "trehn";
}; };
propagatedBuildInputs = [ dateutil click pyfiglet ]; propagatedBuildInputs = [ dateutil click pyfiglet setuptools ];
meta = with stdenv.lib; { meta = with stdenv.lib; {
description = "Starts a countdown to or from TIMESPEC"; description = "Starts a countdown to or from TIMESPEC";
longDescription = "Countdown timer and stopwatch in your terminal"; longDescription = "Countdown timer and stopwatch in your terminal";
homepage = "https://github.com/trehn/termdown"; homepage = "https://github.com/trehn/termdown";
license = licenses.gpl3; license = licenses.gpl3;
platforms = platforms.all;
}; };
} }

View File

@ -22135,7 +22135,7 @@ in
tendermint = callPackage ../tools/networking/tendermint { }; tendermint = callPackage ../tools/networking/tendermint { };
termdown = (newScope pythonPackages) ../applications/misc/termdown { }; termdown = python3Packages.callPackage ../applications/misc/termdown { };
terminal-notifier = callPackage ../applications/misc/terminal-notifier {}; terminal-notifier = callPackage ../applications/misc/terminal-notifier {};