biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / applications / misc / termdown / default.nix
blobd2d592dce7e9d3e947408135ae2435ff9691015b
1 { lib
2 , fetchFromGitHub
3 , buildPythonApplication
4 , click
5 , pyfiglet
6 , python-dateutil
7 , setuptools
8 }:
10 buildPythonApplication rec {
11   pname = "termdown";
12   version = "1.17.0";
14   src = fetchFromGitHub {
15     rev = version;
16     sha256 = "1sd9z5n2a4ir35832wgxs68vwav7wxhq39b5h8pq934mp8sl3v2k";
17     repo = "termdown";
18     owner = "trehn";
19   };
21   propagatedBuildInputs = [ python-dateutil click pyfiglet setuptools ];
23   meta = with lib; {
24     description = "Starts a countdown to or from TIMESPEC";
25     mainProgram = "termdown";
26     longDescription = "Countdown timer and stopwatch in your terminal";
27     homepage = "https://github.com/trehn/termdown";
28     license = licenses.gpl3;
29   };