about summary refs log tree commit diff
path: root/pkgs/applications/office/watson
diff options
context:
space:
mode:
authorNathan Yong <nathyong@users.noreply.github.com>2019-07-01 11:46:08 +1000
committerNathan Yong <nathyong@users.noreply.github.com>2019-07-01 12:25:43 +1000
commitf7710fdd8e8fb49618ddbac75ce133313042f1a7 (patch)
tree69a14c2153bdb8e6fac623a37e75c28d56b95fa5 /pkgs/applications/office/watson
parent76a50f0f85062390e35c88aee352defe1a226aee (diff)
watson: 1.5.2 -> 1.7.0
Diffstat (limited to 'pkgs/applications/office/watson')
-rw-r--r--pkgs/applications/office/watson/default.nix13
1 files changed, 3 insertions, 10 deletions
diff --git a/pkgs/applications/office/watson/default.nix b/pkgs/applications/office/watson/default.nix
index e0f0c58b45063..3c3e238eab88f 100644
--- a/pkgs/applications/office/watson/default.nix
+++ b/pkgs/applications/office/watson/default.nix
@@ -4,11 +4,11 @@ with pythonPackages;
 
 buildPythonApplication rec {
   pname = "td-watson";
-  version = "1.5.2";
+  version = "1.7.0";
 
   src = fetchPypi {
     inherit version pname;
-    sha256 = "6e03d44a9278807fe5245e9ed0943f13ffb88e11249a02655c84cb86260b27c8";
+    sha256 = "249313996751f32f38817d424cbf8d74956461df1439f0ee3a962fcc3c77225d";
   };
 
   # uses tox, test invocation fails
@@ -17,13 +17,6 @@ buildPythonApplication rec {
     py.test -vs tests
  '';
 
-  patches = [
-    (fetchpatch {
-      url = https://github.com/TailorDev/Watson/commit/f5760c71cbc22de4e12ede8f6f7257515a9064d3.patch;
-      sha256 = "0s9h26915ilpbd0qhmvk77r3gmrsdrl5l7dqxj0l5q66fp0z6b0g";
-    })
-  ];
-
   checkInputs = [ py pytest pytest-datafiles mock pytest-mock pytestrunner ];
   propagatedBuildInputs = [ requests click arrow ];
 
@@ -31,6 +24,6 @@ buildPythonApplication rec {
     homepage = https://tailordev.github.io/Watson/;
     description = "A wonderful CLI to track your time!";
     license = licenses.mit;
-    maintainers = with maintainers; [ mguentner ] ;
+    maintainers = with maintainers; [ mguentner nathyong ] ;
   };
 }