tailscale: build derpprobe (#364918)
[NixPkgs.git] / pkgs / applications / misc / termdown / default.nix
blobaa20f51e3ae0aafe6c6db539eb9eeb4498373dc5
2   lib,
3   fetchFromGitHub,
4   buildPythonApplication,
5   click,
6   pyfiglet,
7   python-dateutil,
8   setuptools,
9 }:
11 buildPythonApplication rec {
12   pname = "termdown";
13   version = "1.17.0";
15   src = fetchFromGitHub {
16     rev = version;
17     sha256 = "1sd9z5n2a4ir35832wgxs68vwav7wxhq39b5h8pq934mp8sl3v2k";
18     repo = "termdown";
19     owner = "trehn";
20   };
22   propagatedBuildInputs = [
23     python-dateutil
24     click
25     pyfiglet
26     setuptools
27   ];
29   meta = with lib; {
30     description = "Starts a countdown to or from TIMESPEC";
31     mainProgram = "termdown";
32     longDescription = "Countdown timer and stopwatch in your terminal";
33     homepage = "https://github.com/trehn/termdown";
34     license = licenses.gpl3;
35   };