depot/third_party/nixpkgs/pkgs/applications/misc/yokadi/default.nix
Default email 5a8b500490 Project import generated by Copybara.
GitOrigin-RevId: 1ca6b0a0cc38dbba0441202535c92841dd39d1ae
2021-06-04 10:07:49 +01:00

29 lines
719 B
Nix

{ lib, fetchurl, buildPythonApplication, 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 = [
dateutil
sqlalchemy
setproctitle
icalendar
];
# Yokadi doesn't have any tests
doCheck = false;
meta = with lib; {
description = "A command line oriented, sqlite powered, todo-list";
homepage = "https://yokadi.github.io/index.html";
license = licenses.gpl3Plus;
maintainers = [ maintainers.nkpvk ];
};
}