summary refs log tree commit diff
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2020-04-28 04:20:00 -0500
committerMario Rodas <marsam@users.noreply.github.com>2020-04-28 04:20:00 -0500
commit8d6ba1e4232ed84289cbacbf41b2b886d6701fd3 (patch)
treec5d514c3ae06bc8e2b26f254c6b81dd2322102a5
parent75a0f049122bfaab6ed30a22267b9d0b071ce7d4 (diff)
downloadnixpkgs-8d6ba1e4232ed84289cbacbf41b2b886d6701fd3.tar
nixpkgs-8d6ba1e4232ed84289cbacbf41b2b886d6701fd3.tar.gz
nixpkgs-8d6ba1e4232ed84289cbacbf41b2b886d6701fd3.tar.bz2
nixpkgs-8d6ba1e4232ed84289cbacbf41b2b886d6701fd3.tar.lz
nixpkgs-8d6ba1e4232ed84289cbacbf41b2b886d6701fd3.tar.xz
nixpkgs-8d6ba1e4232ed84289cbacbf41b2b886d6701fd3.tar.zst
nixpkgs-8d6ba1e4232ed84289cbacbf41b2b886d6701fd3.zip
vdirsyncer: fix build on darwin
-rw-r--r--pkgs/tools/misc/vdirsyncer/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/tools/misc/vdirsyncer/default.nix b/pkgs/tools/misc/vdirsyncer/default.nix
index eee4e5648e9..61c9b9df877 100644
--- a/pkgs/tools/misc/vdirsyncer/default.nix
+++ b/pkgs/tools/misc/vdirsyncer/default.nix
@@ -65,7 +65,7 @@ python3Packages.buildPythonApplication rec {
 
   checkPhase = ''
     rm -rf vdirsyncer
-    make DETERMINISTIC_TESTS=true test
+    make DETERMINISTIC_TESTS=true PYTEST_ARGS="--deselect=tests/unit/utils/test_vobject.py::test_replace_uid --deselect=tests/unit/sync/test_sync.py::TestSyncMachine" test
   '';
 
   meta = with stdenv.lib; {