Merge pull request #44073 from lukeadams/pyserial-darwin-fix

pyserial: fix build on Darwin
This commit is contained in:
Matthew Bauer 2018-07-25 14:38:20 -04:00 committed by GitHub
commit a79d917d68
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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";