Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

python3.pkgs.aiohttp: 3.4.4 -> 3.5.2 #53761

Merged
merged 2 commits into from
Jan 10, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
64 changes: 28 additions & 36 deletions pkgs/applications/networking/gns3/server.nix
Original file line number Diff line number Diff line change
@@ -1,70 +1,62 @@
{ stable, branch, version, sha256Hash }:

{ stdenv, python36Packages, fetchFromGitHub, fetchurl }:
{ stdenv, python36, fetchFromGitHub }:

let
pythonPackages = python36Packages;
async-timeout = pythonPackages.async-timeout.overrideAttrs
(oldAttrs:
rec {
pname = "async-timeout";
python = python36.override {
packageOverrides = self: super: {
async-timeout = super.async-timeout.overridePythonAttrs (oldAttrs: rec {
version = "2.0.1";
src = pythonPackages.fetchPypi {
inherit pname version;
src = oldAttrs.src.override {
inherit version;
sha256 = "1l3kg062m02mph6rf9rdv8r5c5n356clxa6b6mrn0i77vk9g9kq0";
};
});
aiohttp = pythonPackages.aiohttp.overrideAttrs
(oldAttrs:
rec {
pname = "aiohttp";
aiohttp = super.aiohttp.overridePythonAttrs (oldAttrs: rec {
version = "2.3.10";
src = pythonPackages.fetchPypi {
inherit pname version;
src = oldAttrs.src.override {
inherit version;
sha256 = "8adda6583ba438a4c70693374e10b60168663ffa6564c5c75d3c7a9055290964";
};
propagatedBuildInputs = [ async-timeout ]
++ (with pythonPackages; [ attrs chardet multidict yarl idna-ssl ]);
propagatedBuildInputs = with self; [ async-timeout attrs chardet multidict yarl idna-ssl ];
doCheck = false;
});
aiohttp-cors = pythonPackages.aiohttp-cors.overrideAttrs
(oldAttrs:
rec {
pname = "aiohttp-cors";
aiohttp-cors = super.aiohttp-cors.overridePythonAttrs (oldAttrs: rec {
version = "0.5.3";
name = "${pname}-${version}";
src = pythonPackages.fetchPypi {
inherit pname version;
src = oldAttrs.src.override {
inherit version;
sha256 = "11b51mhr7wjfiikvj3nc5s8c7miin2zdhl3yrzcga4mbpkj892in";
};
propagatedBuildInputs = [ aiohttp ]
++ stdenv.lib.optional
(pythonPackages.pythonOlder "3.5")
pythonPackages.typing;
propagatedBuildInputs = with self; [ aiohttp ]
++ stdenv.lib.optional (pythonOlder "3.5") typing;
});
in pythonPackages.buildPythonPackage rec {
name = "${pname}-${version}";
};
};

in python.pkgs.buildPythonPackage {
pname = "gns3-server";
inherit version;

src = fetchFromGitHub {
owner = "GNS3";
repo = pname;
repo = "gns3-server";
rev = "v${version}";
sha256 = sha256Hash;
};

propagatedBuildInputs = [ aiohttp-cors ]
++ (with pythonPackages; [
yarl aiohttp multidict
jinja2 psutil zipstream raven jsonschema typing
(pythonPackages.callPackage ../../../development/python-modules/prompt_toolkit/1.nix {})
]);
propagatedBuildInputs = with python.pkgs; [
aiohttp-cors yarl aiohttp multidict
jinja2 psutil zipstream raven jsonschema typing
(python.pkgs.callPackage ../../../development/python-modules/prompt_toolkit/1.nix {})
];

# Requires network access
doCheck = false;

postInstall = ''
rm $out/bin/gns3loopback # For Windows only
'';

meta = with stdenv.lib; {
description = "Graphical Network Simulator 3 server (${branch} release)";
longDescription = ''
Expand Down
26 changes: 15 additions & 11 deletions pkgs/development/python-modules/aiohttp/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -8,33 +8,37 @@
, async-timeout
, yarl
, idna-ssl
, typing-extensions
, pytestrunner
, pytest
, gunicorn
, pytest-mock
, async_generator
, pytestrunner
, pytest-timeout
, async_generator
, pytest_xdist
, pytestcov
, pytest-mock
, trustme
, brotlipy
}:

buildPythonPackage rec {
pname = "aiohttp";
version = "3.4.4";
version = "3.5.2";

src = fetchPypi {
inherit pname version;
sha256 = "1ykm6kdjkrg556j0zd7dx2l1rsrbh0d9g27ivr6dmaahz9pyrbsi";
sha256 = "3d851b15e615c0ad619de0990ab94c9721c335aebb58d160bf77a4af963c6b50";
};

disabled = pythonOlder "3.5";

checkInputs = [ pytest gunicorn pytest-mock async_generator pytestrunner pytest-timeout ];
checkInputs = [
pytestrunner pytest gunicorn pytest-timeout async_generator pytest_xdist
pytest-mock pytestcov trustme brotlipy
];

propagatedBuildInputs = [ attrs chardet multidict async-timeout yarl ]
++ lib.optional (pythonOlder "3.7") idna-ssl;


# Several test failures. Need to be looked into.
doCheck = false;
++ lib.optionals (pythonOlder "3.7") [ idna-ssl typing-extensions ];

meta = with lib; {
description = "Asynchronous HTTP Client/Server for Python and asyncio";
Expand Down
3 changes: 2 additions & 1 deletion pkgs/servers/home-assistant/appdaemon.nix
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@ let
sha256 = "8adda6583ba438a4c70693374e10b60168663ffa6564c5c75d3c7a9055290964";
};
# TODO: remove after pinning aiohttp to a newer version
propagatedBuildInputs = oldAttrs.propagatedBuildInputs ++ [ self.idna-ssl ];
propagatedBuildInputs = with self; [ chardet multidict async-timeout yarl idna-ssl ];
doCheck = false;
});

yarl = super.yarl.overridePythonAttrs (oldAttrs: rec {
Expand Down