Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: fe76cf8e60c4
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 9055e34fe170
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Mar 19, 2019

  1. python3.pkgs.python-engineio: 3.0.0 -> 3.4.3

    fixes build of python-socketio
    
    (cherry picked from commit f94dc01)
    Mic92 authored and Robert Schütz committed Mar 19, 2019
    Copy the full SHA
    9055e34 View commit details
Showing with 8 additions and 2 deletions.
  1. +8 −2 pkgs/development/python-modules/python-engineio/default.nix
10 changes: 8 additions & 2 deletions pkgs/development/python-modules/python-engineio/default.nix
Original file line number Diff line number Diff line change
@@ -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