depot/pkgs/tools/misc/pdd/default.nix
Luke Granger-Brown 57725ef3ec Squashed 'third_party/nixpkgs/' content from commit 76612b17c0ce
git-subtree-dir: third_party/nixpkgs
git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
2024-11-10 23:59:47 +00:00

35 lines
1 KiB
Nix

{ lib, fetchFromGitHub, buildPythonApplication, python-dateutil }:
buildPythonApplication rec {
pname = "pdd";
version = "1.6";
src = fetchFromGitHub {
owner = "jarun";
repo = "pdd";
rev = "refs/tags/v${version}";
sha256 = "sha256-Z+jUFu4VvrgWUtkXMkjspcRJ/JG81X9gc2tnDoCdrsk=";
};
format = "other";
propagatedBuildInputs = [ python-dateutil ];
installFlags = [ "PREFIX=$(out)" ];
meta = with 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 = [ ];
license = licenses.gpl3;
mainProgram = "pdd";
};
}