summary refs log tree commit diff
path: root/pkgs/applications/office
diff options
context:
space:
mode:
authorWeijia Wang <9713184+wegank@users.noreply.github.com>2023-10-23 15:15:42 +0200
committerGitHub <noreply@github.com>2023-10-23 15:15:42 +0200
commita944b73ae9c5b66fcb908ae20eb8f7084598854a (patch)
treee28e9d35965696246dd734c3e994aabc9c466863 /pkgs/applications/office
parent7f4904bd0e917ee08f3c575ba007e0fae3088615 (diff)
parentaf7889b4d93590259ff264b9e631793877bcb668 (diff)
downloadnixpkgs-a944b73ae9c5b66fcb908ae20eb8f7084598854a.tar
nixpkgs-a944b73ae9c5b66fcb908ae20eb8f7084598854a.tar.gz
nixpkgs-a944b73ae9c5b66fcb908ae20eb8f7084598854a.tar.bz2
nixpkgs-a944b73ae9c5b66fcb908ae20eb8f7084598854a.tar.lz
nixpkgs-a944b73ae9c5b66fcb908ae20eb8f7084598854a.tar.xz
nixpkgs-a944b73ae9c5b66fcb908ae20eb8f7084598854a.tar.zst
nixpkgs-a944b73ae9c5b66fcb908ae20eb8f7084598854a.zip
Merge pull request #262760 from gador/todoman-fix-test
todoman: apply upstream patch
Diffstat (limited to 'pkgs/applications/office')
-rw-r--r--pkgs/applications/office/todoman/default.nix9
1 files changed, 9 insertions, 0 deletions
diff --git a/pkgs/applications/office/todoman/default.nix b/pkgs/applications/office/todoman/default.nix
index 813c29e1ef5..56c2219af67 100644
--- a/pkgs/applications/office/todoman/default.nix
+++ b/pkgs/applications/office/todoman/default.nix
@@ -5,6 +5,7 @@
 , installShellFiles
 , jq
 , python3
+, fetchpatch
 }:
 
 python3.pkgs.buildPythonApplication rec {
@@ -19,6 +20,14 @@ python3.pkgs.buildPythonApplication rec {
     hash = "sha256-dxyI9ypZZBouTUF72wzvi7j+CeoQ9JNSiXrVeV7ForY=";
   };
 
+  patches = [
+    (fetchpatch {
+      name = "disable-broken-urwid-test.patch";
+      url = "https://github.com/pimutils/todoman/commit/7ff0d2e2e69e24df5d66fecc58f8cd0b4e5ced6d.patch";
+      hash = "sha256-MMNnnIthNqobexd8GaA6lYxzv5gr1l0e9YK+Ygeje2w=";
+    })
+  ];
+
   SETUPTOOLS_SCM_PRETEND_VERSION = version;
 
   nativeBuildInputs = [