yokadi: init at 1.1.1

This commit is contained in:
Niko Pavlinek 2018-02-12 17:39:27 +01:00
parent 47d479253d
commit 0601c4e872
3 changed files with 33 additions and 0 deletions

View file

@ -493,6 +493,7 @@
nicknovitski = "Nick Novitski <nixpkgs@nicknovitski.com>";
nico202 = "Nicolò Balzarotti <anothersms@gmail.com>";
NikolaMandic = "Ratko Mladic <nikola@mandic.email>";
nipav = "Niko Pavlinek <niko.pavlinek@gmail.com>";
nixy = "Andrew R. M. <nixy@nixy.moe>";
nmattia = "Nicolas Mattia <nicolas@nmattia.com>";
nocoolnametom = "Tom Doggett <nocoolnametom@gmail.com>";

View file

@ -0,0 +1,30 @@
{ stdenv, fetchurl, buildPythonApplication, dateutil,
sqlalchemy, setproctitle, icalendar, pycrypto }:
buildPythonApplication rec {
pname = "yokadi";
version = "1.1.1";
src = fetchurl {
url = "https://yokadi.github.io/download/${pname}-${version}.tar.bz2";
sha256 = "af201da66fd3a8435b2ccd932082ab9ff13f5f2e3d6cd3624f1ab81c577aaf17";
};
propagatedBuildInputs = [
dateutil
sqlalchemy
setproctitle
icalendar
pycrypto
];
# Yokadi doesn't have any tests
doCheck = false;
meta = with stdenv.lib; {
description = "A command line oriented, sqlite powered, todo-list";
homepage = https://yokadi.github.io/index.html;
license = licenses.gpl3Plus;
maintainers = [ maintainers.nipav ];
};
}

View file

@ -18200,6 +18200,8 @@ with pkgs;
inherit (gnome3) yelp;
yokadi = python3Packages.callPackage ../applications/misc/yokadi {};
yoshimi = callPackage ../applications/audio/yoshimi { };
inherit (pythonPackages) youtube-dl;