Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

termdown: 1.16.0 -> 1.17.0 #87535

Merged
merged 1 commit into from May 10, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
32 changes: 17 additions & 15 deletions pkgs/applications/misc/termdown/default.nix
@@ -1,27 +1,29 @@
{ stdenv, fetchFromGitHub, buildPythonApplication,
click, pyfiglet, dateutil}:

with stdenv.lib;
{ stdenv
, fetchFromGitHub
, buildPythonApplication
, click
, pyfiglet
, dateutil
, setuptools
}:

buildPythonApplication rec {

pname = "termdown";
version = "1.16.0";
version = "1.17.0";

src = fetchFromGitHub {
rev = version;
sha256 = "0k429ss1xifm9vbgyzpp71r79byn9jclvr0rm77bai2r8nz3s2vf";
repo = "termdown";
owner = "trehn";
rev = version;
sha256 = "1sd9z5n2a4ir35832wgxs68vwav7wxhq39b5h8pq934mp8sl3v2k";
repo = "termdown";
owner = "trehn";
};

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

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";
homepage = "https://github.com/trehn/termdown";
license = licenses.gpl3;
platforms = platforms.all;
homepage = "https://github.com/trehn/termdown";
license = licenses.gpl3;
};
}
2 changes: 1 addition & 1 deletion pkgs/top-level/all-packages.nix
Expand Up @@ -22135,7 +22135,7 @@ in

tendermint = callPackage ../tools/networking/tendermint { };

termdown = (newScope pythonPackages) ../applications/misc/termdown { };
termdown = python3Packages.callPackage ../applications/misc/termdown { };

terminal-notifier = callPackage ../applications/misc/terminal-notifier {};

Expand Down