35 lines
1.0 KiB
Nix
35 lines
1.0 KiB
Nix
{ stdenv, fetchFromGitHub, buildPythonApplication, dateutil }:
|
|
|
|
buildPythonApplication rec {
|
|
pname = "pdd";
|
|
version = "1.3.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "jarun";
|
|
repo = "pdd";
|
|
rev = "v${version}";
|
|
sha256 = "0kl6d9nivf6jj1j70alz64iwbp3ip9rg4x506nannii2cfmmx5wr";
|
|
};
|
|
|
|
format = "other";
|
|
|
|
propagatedBuildInputs = [ dateutil ];
|
|
|
|
installFlags = [ "PREFIX=$(out)" ];
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = "https://github.com/jarun/pdd";
|
|
description = "Tiny date, time diff calculator";
|
|
longDescription = ''
|
|
There are times you want to check how old you are (in years, months, days)
|
|
or how long you need to wait for the next flash sale or the number of days
|
|
left of your notice period in your current job. pdd (Python3 Date Diff) is
|
|
a small cmdline utility to calculate date and time difference. If no
|
|
program arguments are specified it shows the current date, time and
|
|
timezone.
|
|
'';
|
|
maintainers = [ maintainers.infinisil ];
|
|
license = licenses.gpl3;
|
|
};
|
|
}
|