topydo: 0.9 -> 0.13

This commit is contained in:
Samuel Leathers
2017-09-21 18:59:56 -04:00
parent f170dbe16f
commit be530263bc
3 changed files with 37 additions and 23 deletions
+34
View File
@@ -0,0 +1,34 @@
{ stdenv, buildPythonPackage, fetchFromGitHub, arrow, icalendar, mock, freezegun
, coverage, glibcLocales, isPy3k, green, pylint, prompt_toolkit, urwid, watchdog }:
buildPythonPackage rec {
pname = "topydo";
version = "0.13";
name = "${pname}-${version}";
disabled = (!isPy3k);
src = fetchFromGitHub {
owner = "bram85";
repo = pname;
rev = version;
sha256 = "0b3dz137lpbvpjvfy42ibqvj3yk526x4bpn819fd11lagn77w69r";
};
propagatedBuildInputs = [
arrow
icalendar
glibcLocales
prompt_toolkit
urwid
watchdog
];
checkInputs = [ mock freezegun coverage green pylint ];
LC_ALL="en_US.UTF-8";
meta = with stdenv.lib; {
description = "A cli todo application compatible with the todo.txt format";
homepage = "https://github.com/bram85/topydo";
license = licenses.gpl3;
};
}