nixpkgs/pkgs/development/python-modules/ws4py/default.nix

26 lines
737 B
Nix
Raw Normal View History

2017-09-14 04:29:39 +00:00
{ stdenv, buildPythonPackage, fetchPypi, pytest, mock, git, asyncio
, cherrypy, gevent, tornado }:
buildPythonPackage rec {
pname = "ws4py";
2018-04-04 18:19:08 +00:00
version = "0.5.1";
2017-09-14 04:29:39 +00:00
src = fetchPypi {
inherit pname version;
2018-04-04 18:19:08 +00:00
sha256 = "29d073d7f2e006373e6a848b1d00951a1107eb81f3742952be905429dc5a5483";
2017-09-14 04:29:39 +00:00
};
checkInputs = [ pytest mock git ];
propagatedBuildInputs = [ asyncio cherrypy gevent tornado ];
checkPhase = ''
pytest -k 'not test_timeout_when_no_registered_fds and not test_mainloop_can_be_stopped_when_no_websocket_were_registered'
2017-09-14 04:29:39 +00:00
'';
meta = with stdenv.lib; {
homepage = https://ws4py.readthedocs.org;
description = "A WebSocket package for Python";
maintainers = with maintainers; [ rickynils ];
};
}