termdown: 1.17.0 -> 1.18.0

This commit is contained in:
emaryn
2025-03-03 05:25:51 +08:00
parent dce71cf375
commit a396da7a08
+7 -7
View File
@@ -10,27 +10,27 @@
buildPythonApplication rec {
pname = "termdown";
version = "1.17.0";
version = "1.18.0";
src = fetchFromGitHub {
rev = version;
sha256 = "1sd9z5n2a4ir35832wgxs68vwav7wxhq39b5h8pq934mp8sl3v2k";
repo = "termdown";
owner = "trehn";
repo = "termdown";
tag = version;
hash = "sha256-Hnk/MOYdbOl14fI0EFbIq7Hmc7TyhcZWGEg2/jmNJ5Y=";
};
propagatedBuildInputs = [
dependencies = [
python-dateutil
click
pyfiglet
setuptools
];
meta = with lib; {
meta = {
description = "Starts a countdown to or from TIMESPEC";
mainProgram = "termdown";
longDescription = "Countdown timer and stopwatch in your terminal";
homepage = "https://github.com/trehn/termdown";
license = licenses.gpl3;
license = lib.licenses.gpl3;
};
}