Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
49 lines
1.2 KiB
Nix
49 lines
1.2 KiB
Nix
{
|
|
lib,
|
|
python3Packages,
|
|
fetchFromGitLab,
|
|
}:
|
|
|
|
python3Packages.buildPythonApplication rec {
|
|
pname = "undertime";
|
|
version = "4.3.0";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitLab {
|
|
owner = "anarcat";
|
|
repo = "undertime";
|
|
tag = version;
|
|
hash = "sha256-sQI+fpg5PFGCsS9xikMTi4Ad76TayP13UgZag6CRBxE=";
|
|
};
|
|
|
|
nativeBuildInputs = with python3Packages; [
|
|
setuptools
|
|
setuptools-scm
|
|
];
|
|
|
|
dependencies = with python3Packages; [
|
|
dateparser
|
|
ephem
|
|
pytz
|
|
pyyaml
|
|
termcolor
|
|
tabulate
|
|
tzlocal
|
|
];
|
|
|
|
meta = {
|
|
changelog = "https://gitlab.com/anarcat/undertime/-/raw/${version}/debian/changelog";
|
|
description = "Pick a meeting time across timezones from the commandline";
|
|
homepage = "https://gitlab.com/anarcat/undertime";
|
|
longDescription = ''
|
|
Undertime draws a simple 24 hour table of matching times across
|
|
different timezones or cities, outlining waking hours. This allows
|
|
picking an ideal meeting date across multiple locations for teams
|
|
working internationally.
|
|
'';
|
|
license = lib.licenses.agpl3Only;
|
|
mainProgram = "undertime";
|
|
maintainers = with lib.maintainers; [ dvn0 ];
|
|
};
|
|
}
|