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: 14fa24f87a42
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 6825f045df35
Choose a head ref
  • 3 commits
  • 4 files changed
  • 1 contributor

Commits on Sep 20, 2019

  1. python3Packages.websockets: 7.0 -> 8.0.2

    (cherry picked from commit 9b092e2)
    Jonathan Ringer authored and Mic92 committed Sep 20, 2019
    Copy the full SHA
    d3f56ac View commit details
  2. python3Packages.uvicorn: 0.8.4 -> 0.9.0

    (cherry picked from commit 80d1a3b)
    Jonathan Ringer authored and Mic92 committed Sep 20, 2019
    Copy the full SHA
    91abf95 View commit details
  3. python3Packages.python-engineio: 3.4.3 -> 3.9.3

    (cherry picked from commit 2d8a5ba)
    Jonathan Ringer authored and Mic92 committed Sep 20, 2019
    Copy the full SHA
    6825f04 View commit details
26 changes: 12 additions & 14 deletions pkgs/development/python-modules/python-engineio/default.nix
Original file line number Diff line number Diff line change
@@ -1,41 +1,39 @@
{ stdenv
, buildPythonPackage
, fetchFromGitHub
, six
{ stdenv, buildPythonPackage, fetchFromGitHub
, aiohttp
, eventlet
, mock
, iana-etc
, libredirect
, aiohttp
, websockets
, websocket_client
, mock
, requests
, six
, tornado
, websocket_client
, websockets
}:

buildPythonPackage rec {
pname = "python-engineio";
version = "3.4.3";
version = "3.9.3";

src = fetchFromGitHub {
owner = "miguelgrinberg";
repo = "python-engineio";
rev = "v${version}";
sha256 = "0wk81rqigw47z087f5kc7b9iwqggypxc62q8q818qyzqwb93ysxf";
sha256 = "0rwlj12d37dpw6y3bdn6rxv68xnd9ykj4fr3ly0fa143xci35d9y";
};

propagatedBuildInputs = [
six
];

checkInputs = [
aiohttp
eventlet
mock
aiohttp
websockets
websocket_client
tornado
requests
tornado
websocket_client
websockets
];

# make /etc/protocols accessible to fix socket.getprotobyname('tcp') in sandbox
24 changes: 16 additions & 8 deletions pkgs/development/python-modules/uvicorn/default.nix
Original file line number Diff line number Diff line change
@@ -1,23 +1,27 @@
{ lib
, buildPythonPackage
, fetchPypi
, fetchFromGitHub
, click
, h11
, httptools
, uvloop
, websockets
, wsproto
, pytest
, requests
, isPy27
}:

buildPythonPackage rec {
pname = "uvicorn";
version = "0.8.4";
version = "0.9.0";
disabled = isPy27;

src = fetchPypi {
inherit pname version;
sha256 = "1l8rfm30inx9pma893i7sby9h7y910k58841zqaajksn563b882k";
src = fetchFromGitHub {
owner = "encode";
repo = pname;
rev = version;
sha256 = "0z4h04mbkzqgpk698bac6f50jxkf02ils6khzl7zbw7yvi6gkkc8";
};

propagatedBuildInputs = [
@@ -29,11 +33,15 @@ buildPythonPackage rec {
wsproto
];

checkPhase = ''
$out/bin/uvicorn --help
postPatch = ''
substituteInPlace setup.py \
--replace "h11==0.8.*" "h11"
'';

patches = [ ./setup.patch ];
checkInputs = [ pytest requests ];
checkPhase = ''
pytest
'';

meta = with lib; {
homepage = https://www.uvicorn.org/;
13 changes: 0 additions & 13 deletions pkgs/development/python-modules/uvicorn/setup.patch

This file was deleted.

20 changes: 11 additions & 9 deletions pkgs/development/python-modules/websockets/default.nix
Original file line number Diff line number Diff line change
@@ -1,24 +1,26 @@
{ lib
, fetchPypi
, fetchFromGitHub
, buildPythonPackage
, pythonOlder
, pytest
}:

buildPythonPackage rec {
pname = "websockets";
version = "7.0";
version = "8.0.2";

src = fetchPypi {
inherit pname version;
sha256 = "17vwr6sa1y3lb24wzfyyc98c5v03di4j8f24qkqa9vsvaghc7qq8";
src = fetchFromGitHub {
owner = "aaugustin";
repo = pname;
rev = version;
sha256 = "02fgb8gib4z5fqv30brz3mhxmblw9bw0978fhpjdrkj7wvqrz5h8";
};

disabled = pythonOlder "3.3";
doCheck = false; # protocol tests fail

meta = {
meta = with lib; {
description = "WebSocket implementation in Python 3";
homepage = https://github.com/aaugustin/websockets;
license = lib.licenses.bsd3;
homepage = "https://github.com/aaugustin/websockets";
license = licenses.bsd3;
};
}