Luke Granger-Brown
57725ef3ec
git-subtree-dir: third_party/nixpkgs git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
29 lines
731 B
Nix
29 lines
731 B
Nix
{ lib, fetchurl, buildPythonApplication, python-dateutil,
|
|
sqlalchemy, setproctitle, icalendar }:
|
|
|
|
buildPythonApplication rec {
|
|
pname = "yokadi";
|
|
version = "1.2.0";
|
|
|
|
src = fetchurl {
|
|
url = "https://yokadi.github.io/download/${pname}-${version}.tar.gz";
|
|
sha256 = "681c8aa52b2e4b5255e1311e76b4b81dcb63ee7f6ca3a47178e684c06baf330f";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
python-dateutil
|
|
sqlalchemy
|
|
setproctitle
|
|
icalendar
|
|
];
|
|
|
|
# Yokadi doesn't have any tests
|
|
doCheck = false;
|
|
|
|
meta = with lib; {
|
|
description = "Command line oriented, sqlite powered, todo-list";
|
|
homepage = "https://yokadi.github.io/index.html";
|
|
license = licenses.gpl3Plus;
|
|
maintainers = [ maintainers.nkpvk ];
|
|
};
|
|
}
|