summary refs log tree commit diff
path: root/pkgs/applications
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2020-07-20 07:24:42 -0500
committerGitHub <noreply@github.com>2020-07-20 07:24:42 -0500
commitca4e665f8c3afb889993415a58642ac11cfb0f81 (patch)
tree01877b436c341fc9b9c7a0cc13a624d3f6e842e0 /pkgs/applications
parent17ce8608cbb991570dc79fe79ab44672ac31f3fd (diff)
parent7a53f9b096074677c4a91c39ffdf044c1eaf158f (diff)
downloadnixpkgs-ca4e665f8c3afb889993415a58642ac11cfb0f81.tar
nixpkgs-ca4e665f8c3afb889993415a58642ac11cfb0f81.tar.gz
nixpkgs-ca4e665f8c3afb889993415a58642ac11cfb0f81.tar.bz2
nixpkgs-ca4e665f8c3afb889993415a58642ac11cfb0f81.tar.lz
nixpkgs-ca4e665f8c3afb889993415a58642ac11cfb0f81.tar.xz
nixpkgs-ca4e665f8c3afb889993415a58642ac11cfb0f81.tar.zst
nixpkgs-ca4e665f8c3afb889993415a58642ac11cfb0f81.zip
Merge pull request #93467 from geistesk/watson-1.10.0
watson: 1.9.0 -> 1.10.0
Diffstat (limited to 'pkgs/applications')
-rw-r--r--pkgs/applications/office/watson/default.nix17
1 files changed, 4 insertions, 13 deletions
diff --git a/pkgs/applications/office/watson/default.nix b/pkgs/applications/office/watson/default.nix
index 5d4b915edfb..dc185a791ea 100644
--- a/pkgs/applications/office/watson/default.nix
+++ b/pkgs/applications/office/watson/default.nix
@@ -1,27 +1,18 @@
-{ stdenv, fetchFromGitHub, pythonPackages, fetchpatch, installShellFiles }:
+{ stdenv, fetchFromGitHub, pythonPackages, installShellFiles }:
 
 with pythonPackages;
 
 buildPythonApplication rec {
   pname = "watson";
-  version = "1.9.0";
+  version = "1.10.0";
 
   src = fetchFromGitHub {
     owner = "TailorDev";
     repo = "Watson";
     rev = version;
-    sha256 = "0f0ldwadjf0xncx3m4w4wwqddd4wjwcsrbhby8vgsnqsn48dnfcx";
+    sha256 = "1s0k86ldqky6avwjaxkw1y02wyf59qwqldcahy3lhjn1b5dgsb3s";
   };
 
-  patches = [
-    # https://github.com/TailorDev/Watson/pull/380
-    # The nixpkgs' arrow version is too new / not supported by Watson's latest release.
-    (fetchpatch {
-      url = "https://github.com/TailorDev/Watson/commit/69b9ad25551525d52060f7fb2eef3653e872a455.patch";
-      sha256 = "0zrswgr0y219f92zi41m7cymfaspkhmlada4v9ijnsjjdb4bn2c9";
-    })
-  ];
-
   checkPhase = ''
     pytest -vs tests
   '';
@@ -39,6 +30,6 @@ buildPythonApplication rec {
     homepage = "https://tailordev.github.io/Watson/";
     description = "A wonderful CLI to track your time!";
     license = licenses.mit;
-    maintainers = with maintainers; [ mguentner nathyong ];
+    maintainers = with maintainers; [ mguentner nathyong geistesk ];
   };
 }