diff options
| author | Jörg Thalheim <joerg@thalheim.io> | 2019-03-14 11:12:29 +0000 |
|---|---|---|
| committer | Jörg Thalheim <joerg@thalheim.io> | 2019-03-14 11:14:43 +0000 |
| commit | f94dc01e751fdc17f3d5f7f7b4dc201fcb686238 (patch) | |
| tree | 901e80e6a89635a9c803fef88be6a9ca6f6d62f3 /pkgs/development/python-modules/python-engineio | |
| parent | 88c3183581c1ff9af6ab020352aa12bdeffc9602 (diff) | |
python3.pkgs.python-engineio: 3.0.0 -> 3.4.3
fixes build of python-socketio
Diffstat (limited to 'pkgs/development/python-modules/python-engineio')
| -rw-r--r-- | pkgs/development/python-modules/python-engineio/default.nix | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/pkgs/development/python-modules/python-engineio/default.nix b/pkgs/development/python-modules/python-engineio/default.nix index 1ea6dd89f2a4..1f64ff13fa03 100644 --- a/pkgs/development/python-modules/python-engineio/default.nix +++ b/pkgs/development/python-modules/python-engineio/default.nix @@ -8,18 +8,21 @@ , iana-etc , libredirect , aiohttp +, websockets +, websocket_client +, requests , tornado }: buildPythonPackage rec { pname = "python-engineio"; - version = "3.0.0"; + version = "3.4.3"; src = fetchFromGitHub { owner = "miguelgrinberg"; repo = "python-engineio"; rev = "v${version}"; - sha256 = "1v510fhn0li808ar2cmwh5nijacy5x60q9x4gm0b34j6mkmc59ph"; + sha256 = "0wk81rqigw47z087f5kc7b9iwqggypxc62q8q818qyzqwb93ysxf"; }; propagatedBuildInputs = [ @@ -30,7 +33,10 @@ buildPythonPackage rec { eventlet mock aiohttp + websockets + websocket_client tornado + requests ]; # make /etc/protocols accessible to fix socket.getprotobyname('tcp') in sandbox |
