linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / tools / misc / pdd / default.nix
blob916f15c94c6e4de451bf3dfc48b6a2b3f57669af
1 { lib, fetchFromGitHub, buildPythonApplication, dateutil }:
3 buildPythonApplication rec {
4   pname = "pdd";
5   version = "1.5";
7   src = fetchFromGitHub {
8     owner = "jarun";
9     repo = "pdd";
10     rev = "v${version}";
11     sha256 = "1ivzcbm888aibiihw03idp38qbl8mywj1lc1x0q787v0pzqfb4ss";
12   };
14   format = "other";
16   propagatedBuildInputs = [ dateutil ];
18   installFlags = [ "PREFIX=$(out)" ];
20   meta = with lib; {
21     homepage = "https://github.com/jarun/pdd";
22     description = "Tiny date, time diff calculator";
23     longDescription = ''
24       There are times you want to check how old you are (in years, months, days)
25       or how long you need to wait for the next flash sale or the number of days
26       left of your notice period in your current job. pdd (Python3 Date Diff) is
27       a small cmdline utility to calculate date and time difference. If no
28       program arguments are specified it shows the current date, time and
29       timezone.
30     '';
31     maintainers = [ maintainers.infinisil ];
32     license = licenses.gpl3;
33   };