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
41 lines
796 B
Nix
41 lines
796 B
Nix
{
|
|
lib,
|
|
fetchurl,
|
|
buildPythonApplication,
|
|
python-dateutil,
|
|
sqlalchemy,
|
|
setproctitle,
|
|
icalendar,
|
|
colorama,
|
|
}:
|
|
|
|
buildPythonApplication rec {
|
|
pname = "yokadi";
|
|
version = "1.3.0";
|
|
format = "setuptools";
|
|
|
|
src = fetchurl {
|
|
url = "https://yokadi.github.io/download/${pname}-${version}.tar.gz";
|
|
hash = "sha256-zF2ffHeU+i7wzu1u4DhQ5zJXr8AjXboiyFAisXNX6TM=";
|
|
};
|
|
|
|
dependencies = [
|
|
python-dateutil
|
|
sqlalchemy
|
|
setproctitle
|
|
icalendar
|
|
colorama
|
|
];
|
|
|
|
# Yokadi doesn't have any tests
|
|
doCheck = false;
|
|
|
|
meta = {
|
|
description = "Command line oriented, sqlite powered, todo-list";
|
|
homepage = "https://yokadi.github.io/index.html";
|
|
mainProgram = "yokadi";
|
|
license = lib.licenses.gpl3Plus;
|
|
maintainers = [ lib.maintainers.nkpvk ];
|
|
};
|
|
}
|