2016-12-14 18:10:14 +00:00
|
|
|
{ lib
|
2018-06-23 14:27:58 +01:00
|
|
|
, fetchPypi
|
2016-12-14 18:10:14 +00:00
|
|
|
, buildPythonPackage
|
|
|
|
, pythonOlder
|
|
|
|
}:
|
|
|
|
|
2018-06-23 14:27:58 +01:00
|
|
|
buildPythonPackage rec {
|
2016-12-14 18:10:14 +00:00
|
|
|
pname = "websockets";
|
2018-06-12 17:47:08 +01:00
|
|
|
version = "5.0.1";
|
2016-12-14 18:10:14 +00:00
|
|
|
|
2018-06-23 14:27:58 +01:00
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2018-06-12 17:47:08 +01:00
|
|
|
sha256 = "a49d315db5a7a19d55422e1678e8a1c3b9661d7296bef3179fa620cf80b12674";
|
2016-12-14 18:10:14 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
disabled = pythonOlder "3.3";
|
|
|
|
doCheck = false; # protocol tests fail
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "WebSocket implementation in Python 3";
|
|
|
|
homepage = https://github.com/aaugustin/websockets;
|
|
|
|
license = lib.licenses.bsd3;
|
|
|
|
};
|
|
|
|
}
|