summaryrefslogtreecommitdiff
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
parentvdirsyncerStable: fix build (diff)
downloadnixpkgs-8d6ba1e4232ed84289cbacbf41b2b886d6701fd3.tar.gz
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 eee4e5648e97..61c9b9df8772 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; {