Robert Schütz
2026-05-13 10:34:19 -07:00
parent d79b2f9d20
commit 26d4beff0b
2 changed files with 14 additions and 14 deletions
+13 -13
View File
@@ -1,33 +1,33 @@
{
lib,
fetchFromGitHub,
buildPythonApplication,
click,
pyfiglet,
python-dateutil,
setuptools,
python3Packages,
}:
buildPythonApplication rec {
python3Packages.buildPythonApplication rec {
pname = "termdown";
version = "1.18.0";
format = "setuptools";
version = "2.0.0";
pyproject = true;
src = fetchFromGitHub {
owner = "trehn";
repo = "termdown";
tag = version;
hash = "sha256-Hnk/MOYdbOl14fI0EFbIq7Hmc7TyhcZWGEg2/jmNJ5Y=";
hash = "sha256-G2YOAC+b++oQUicZcY28qVDy2XqW2SuzhXcVqeSQkh8=";
};
dependencies = [
build-system = with python3Packages; [
hatchling
];
dependencies = with python3Packages; [
art
pillow
python-dateutil
click
pyfiglet
setuptools
];
meta = {
changelog = "https://github.com/trehn/termdown/blob/${src.tag}/CHANGELOG.md";
description = "Starts a countdown to or from TIMESPEC";
mainProgram = "termdown";
longDescription = "Countdown timer and stopwatch in your terminal";
+1 -1
View File
@@ -10308,7 +10308,7 @@ with pkgs;
stdenv = if stdenv.hostPlatform.isDarwin then llvmPackages_19.stdenv else stdenv;
};
termdown = python3Packages.callPackage ../applications/misc/termdown { };
termdown = callPackage ../applications/misc/termdown { };
terminaltexteffects = with python3Packages; toPythonApplication terminaltexteffects;