summary refs log tree commit diff
path: root/pkgs/applications
diff options
context:
space:
mode:
authorWill Dietz <w@wdtz.org>2019-09-09 16:59:21 -0500
committerWill Dietz <w@wdtz.org>2019-09-13 22:29:12 -0500
commit15cafa9e1090bdbc31159fa5d30555005ac8182d (patch)
treeccdfb7ea44458c061efbbe630a66b4a4e702bc3e /pkgs/applications
parenta412701c8de181777558677b16be0bfed6eba519 (diff)
downloadnixpkgs-15cafa9e1090bdbc31159fa5d30555005ac8182d.tar
nixpkgs-15cafa9e1090bdbc31159fa5d30555005ac8182d.tar.gz
nixpkgs-15cafa9e1090bdbc31159fa5d30555005ac8182d.tar.bz2
nixpkgs-15cafa9e1090bdbc31159fa5d30555005ac8182d.tar.lz
nixpkgs-15cafa9e1090bdbc31159fa5d30555005ac8182d.tar.xz
nixpkgs-15cafa9e1090bdbc31159fa5d30555005ac8182d.tar.zst
nixpkgs-15cafa9e1090bdbc31159fa5d30555005ac8182d.zip
todoman: 3.5.0 -> 3.6.0
https://github.com/pimutils/todoman/releases/tag/v3.6.0
Diffstat (limited to 'pkgs/applications')
-rw-r--r--pkgs/applications/office/todoman/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/applications/office/todoman/default.nix b/pkgs/applications/office/todoman/default.nix
index 450ee34262b..7c5c8f72440 100644
--- a/pkgs/applications/office/todoman/default.nix
+++ b/pkgs/applications/office/todoman/default.nix
@@ -5,11 +5,11 @@ let
 in
 buildPythonApplication rec {
   pname = "todoman";
-  version = "3.5.0";
+  version = "3.6.0";
 
   src = fetchPypi {
     inherit pname version;
-    sha256 = "051qjdpwif06x7qspnb4pfwdhb8nnmz99yqcp4kla5hv0n3jh0w9";
+    sha256 = "1c0jh9bi2xfjc7w4kka68mygl00zkp2qxhffnipmfvvykfjmlhk0";
   };
 
     LOCALE_ARCHIVE = stdenv.lib.optionalString stdenv.isLinux
@@ -19,7 +19,7 @@ buildPythonApplication rec {
 
   buildInputs = [ glibcLocales ];
   propagatedBuildInputs = with python3.pkgs;
-    [ atomicwrites click click-log configobj humanize icalendar parsedatetime
+    [ atomicwrites click click-log click-repl configobj humanize icalendar parsedatetime
       python-dateutil pyxdg tabulate urwid ];
 
   checkInputs = with python3.pkgs;