darwin: disable broken packages

This commit is contained in:
Matthew Bauer
2018-03-08 17:21:17 -06:00
parent 4ff4ef51b7
commit 54e2c28b09
10 changed files with 17 additions and 11 deletions
@@ -15,7 +15,7 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [ python3Packages.pytest ];
doCheck = true;
doCheck = !stdenv.isDarwin;
checkPhase = ''
python3 -m pytest test.py
'';