From 100349d605688e13e2dc4de1d56819a01c1c96e6 Mon Sep 17 00:00:00 2001 From: Luke Adams Date: Tue, 24 Jul 2018 21:52:57 -0500 Subject: [PATCH] pyserial: fix build on Darwin --- pkgs/development/python-modules/pyserial/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/pyserial/default.nix b/pkgs/development/python-modules/pyserial/default.nix index 508104d33129..c7787a42691b 100644 --- a/pkgs/development/python-modules/pyserial/default.nix +++ b/pkgs/development/python-modules/pyserial/default.nix @@ -10,7 +10,7 @@ buildPythonPackage rec { }; checkPhase = "python -m unittest discover -s test"; - doInstallCheck = !hostPlatform.isDarwin; # broken on darwin + doCheck = !hostPlatform.isDarwin; # broken on darwin meta = with lib; { homepage = "https://github.com/pyserial/pyserial";