pythonPackages.websocket: disable failing tests on darwin

This commit is contained in:
Simon Chatterjee 2019-09-29 21:00:32 +01:00
parent 1cb9d4d85b
commit ee96f91d2c

View File

@ -3,6 +3,7 @@
, buildPythonPackage
, pythonOlder
, pytest
, stdenv
}:
buildPythonPackage rec {
@ -18,6 +19,9 @@ buildPythonPackage rec {
disabled = pythonOlder "3.3";
# Tests fail on Darwin with `OSError: AF_UNIX path too long`
doCheck = !stdenv.isDarwin;
meta = with lib; {
description = "WebSocket implementation in Python 3";
homepage = "https://github.com/aaugustin/websockets";