commit
131332437f
@ -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>";
|
||||
|
30
pkgs/applications/misc/yokadi/default.nix
Normal file
30
pkgs/applications/misc/yokadi/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -18202,6 +18202,8 @@ with pkgs;
|
||||
|
||||
inherit (gnome3) yelp;
|
||||
|
||||
yokadi = python3Packages.callPackage ../applications/misc/yokadi {};
|
||||
|
||||
yoshimi = callPackage ../applications/audio/yoshimi { };
|
||||
|
||||
inherit (pythonPackages) youtube-dl;
|
||||
|
Loading…
Reference in New Issue
Block a user