pythonPackages.websocket: disable failing tests on darwin
This commit is contained in:
@@ -3,6 +3,7 @@
|
|||||||
, buildPythonPackage
|
, buildPythonPackage
|
||||||
, pythonOlder
|
, pythonOlder
|
||||||
, pytest
|
, pytest
|
||||||
|
, stdenv
|
||||||
}:
|
}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
@@ -18,6 +19,9 @@ buildPythonPackage rec {
|
|||||||
|
|
||||||
disabled = pythonOlder "3.3";
|
disabled = pythonOlder "3.3";
|
||||||
|
|
||||||
|
# Tests fail on Darwin with `OSError: AF_UNIX path too long`
|
||||||
|
doCheck = !stdenv.isDarwin;
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "WebSocket implementation in Python 3";
|
description = "WebSocket implementation in Python 3";
|
||||||
homepage = "https://github.com/aaugustin/websockets";
|
homepage = "https://github.com/aaugustin/websockets";
|
||||||
|
|||||||
Reference in New Issue
Block a user