summary refs log tree commit diff
path: root/pkgs/applications/office
diff options
context:
space:
mode:
authorMoritz Scheuren <m.scheuren@oyra.eu>2020-10-22 19:03:15 +0200
committerMoritz Scheuren <m.scheuren@oyra.eu>2020-10-22 19:03:55 +0200
commit479c17818f0f8c58b9020e1d55aa3acae0579385 (patch)
tree4b603e4a7c2af3212bc1db915b517194630dc248 /pkgs/applications/office
parent506e73b1b6de47d522a72be78c10424f85c7cd19 (diff)
downloadnixpkgs-479c17818f0f8c58b9020e1d55aa3acae0579385.tar
nixpkgs-479c17818f0f8c58b9020e1d55aa3acae0579385.tar.gz
nixpkgs-479c17818f0f8c58b9020e1d55aa3acae0579385.tar.bz2
nixpkgs-479c17818f0f8c58b9020e1d55aa3acae0579385.tar.lz
nixpkgs-479c17818f0f8c58b9020e1d55aa3acae0579385.tar.xz
nixpkgs-479c17818f0f8c58b9020e1d55aa3acae0579385.tar.zst
nixpkgs-479c17818f0f8c58b9020e1d55aa3acae0579385.zip
gtg: unstable-2020-09-16 -> unstable-2020-10-22
Diffstat (limited to 'pkgs/applications/office')
-rw-r--r--pkgs/applications/office/gtg/default.nix11
1 files changed, 6 insertions, 5 deletions
diff --git a/pkgs/applications/office/gtg/default.nix b/pkgs/applications/office/gtg/default.nix
index 2cc3e8eb922..31266bf6142 100644
--- a/pkgs/applications/office/gtg/default.nix
+++ b/pkgs/applications/office/gtg/default.nix
@@ -11,17 +11,18 @@
 , pango
 , gdk-pixbuf
 , gobject-introspection
+, xvfb_run
 }:
 
 python3Packages.buildPythonApplication rec {
   pname = "gtg";
-  version = "unstable-2020-09-16";
+  version = "unstable-2020-10-22";
 
   src = fetchFromGitHub {
     owner = "getting-things-gnome";
     repo = "gtg";
-    rev = "1be991c6d7f7b2e4b8ac16f82e8a07f9dce4272f";
-    sha256 = "1f5acpjwnp08c78dds7xm22qjzcfnx2qs121yvm3rswkh27s4n23";
+    rev = "144814c16723fa9d00e17e047df5d79ab443fc5f";
+    sha256 = "1lpanfbj8y8b6cqp92lgbvfs8irrc5bsdffzcjcycazv19qm7z2n";
   };
 
 
@@ -45,7 +46,6 @@ python3Packages.buildPythonApplication rec {
     pycairo
     pygobject3
     lxml
-    dbus-python
     gst-python
     liblarch
   ];
@@ -53,12 +53,13 @@ python3Packages.buildPythonApplication rec {
   checkInputs = with python3Packages; [
     nose
     mock
+    xvfb_run
   ];
 
   format = "other";
   strictDeps = false; # gobject-introspection does not run with strictDeps (https://github.com/NixOS/nixpkgs/issues/56943)
 
-  checkPhase = "python3 ../run-tests";
+  checkPhase = "xvfb-run python3 ../run-tests";
 
   meta = with stdenv.lib; {
     description = " A personal tasks and TODO-list items organizer";