Merge pull request #53761 from dotlambda/aiohttp-3.5.2
python3.pkgs.aiohttp: 3.4.4 -> 3.5.2
This commit is contained in:
commit
3f3fe76fec
|
@ -1,63 +1,54 @@
|
||||||
{ stable, branch, version, sha256Hash }:
|
{ stable, branch, version, sha256Hash }:
|
||||||
|
|
||||||
{ stdenv, python36Packages, fetchFromGitHub, fetchurl }:
|
{ stdenv, python36, fetchFromGitHub }:
|
||||||
|
|
||||||
let
|
let
|
||||||
pythonPackages = python36Packages;
|
python = python36.override {
|
||||||
async-timeout = pythonPackages.async-timeout.overrideAttrs
|
packageOverrides = self: super: {
|
||||||
(oldAttrs:
|
async-timeout = super.async-timeout.overridePythonAttrs (oldAttrs: rec {
|
||||||
rec {
|
|
||||||
pname = "async-timeout";
|
|
||||||
version = "2.0.1";
|
version = "2.0.1";
|
||||||
src = pythonPackages.fetchPypi {
|
src = oldAttrs.src.override {
|
||||||
inherit pname version;
|
inherit version;
|
||||||
sha256 = "1l3kg062m02mph6rf9rdv8r5c5n356clxa6b6mrn0i77vk9g9kq0";
|
sha256 = "1l3kg062m02mph6rf9rdv8r5c5n356clxa6b6mrn0i77vk9g9kq0";
|
||||||
};
|
};
|
||||||
});
|
});
|
||||||
aiohttp = pythonPackages.aiohttp.overrideAttrs
|
aiohttp = super.aiohttp.overridePythonAttrs (oldAttrs: rec {
|
||||||
(oldAttrs:
|
|
||||||
rec {
|
|
||||||
pname = "aiohttp";
|
|
||||||
version = "2.3.10";
|
version = "2.3.10";
|
||||||
src = pythonPackages.fetchPypi {
|
src = oldAttrs.src.override {
|
||||||
inherit pname version;
|
inherit version;
|
||||||
sha256 = "8adda6583ba438a4c70693374e10b60168663ffa6564c5c75d3c7a9055290964";
|
sha256 = "8adda6583ba438a4c70693374e10b60168663ffa6564c5c75d3c7a9055290964";
|
||||||
};
|
};
|
||||||
propagatedBuildInputs = [ async-timeout ]
|
propagatedBuildInputs = with self; [ async-timeout attrs chardet multidict yarl idna-ssl ];
|
||||||
++ (with pythonPackages; [ attrs chardet multidict yarl idna-ssl ]);
|
doCheck = false;
|
||||||
});
|
});
|
||||||
aiohttp-cors = pythonPackages.aiohttp-cors.overrideAttrs
|
aiohttp-cors = super.aiohttp-cors.overridePythonAttrs (oldAttrs: rec {
|
||||||
(oldAttrs:
|
|
||||||
rec {
|
|
||||||
pname = "aiohttp-cors";
|
|
||||||
version = "0.5.3";
|
version = "0.5.3";
|
||||||
name = "${pname}-${version}";
|
src = oldAttrs.src.override {
|
||||||
src = pythonPackages.fetchPypi {
|
inherit version;
|
||||||
inherit pname version;
|
|
||||||
sha256 = "11b51mhr7wjfiikvj3nc5s8c7miin2zdhl3yrzcga4mbpkj892in";
|
sha256 = "11b51mhr7wjfiikvj3nc5s8c7miin2zdhl3yrzcga4mbpkj892in";
|
||||||
};
|
};
|
||||||
propagatedBuildInputs = [ aiohttp ]
|
propagatedBuildInputs = with self; [ aiohttp ]
|
||||||
++ stdenv.lib.optional
|
++ stdenv.lib.optional (pythonOlder "3.5") typing;
|
||||||
(pythonPackages.pythonOlder "3.5")
|
|
||||||
pythonPackages.typing;
|
|
||||||
});
|
});
|
||||||
in pythonPackages.buildPythonPackage rec {
|
};
|
||||||
name = "${pname}-${version}";
|
};
|
||||||
|
|
||||||
|
in python.pkgs.buildPythonPackage {
|
||||||
pname = "gns3-server";
|
pname = "gns3-server";
|
||||||
|
inherit version;
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "GNS3";
|
owner = "GNS3";
|
||||||
repo = pname;
|
repo = "gns3-server";
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
sha256 = sha256Hash;
|
sha256 = sha256Hash;
|
||||||
};
|
};
|
||||||
|
|
||||||
propagatedBuildInputs = [ aiohttp-cors ]
|
propagatedBuildInputs = with python.pkgs; [
|
||||||
++ (with pythonPackages; [
|
aiohttp-cors yarl aiohttp multidict
|
||||||
yarl aiohttp multidict
|
jinja2 psutil zipstream raven jsonschema typing
|
||||||
jinja2 psutil zipstream raven jsonschema typing
|
(python.pkgs.callPackage ../../../development/python-modules/prompt_toolkit/1.nix {})
|
||||||
(pythonPackages.callPackage ../../../development/python-modules/prompt_toolkit/1.nix {})
|
];
|
||||||
]);
|
|
||||||
|
|
||||||
# Requires network access
|
# Requires network access
|
||||||
doCheck = false;
|
doCheck = false;
|
||||||
|
@ -65,6 +56,7 @@ in pythonPackages.buildPythonPackage rec {
|
||||||
postInstall = ''
|
postInstall = ''
|
||||||
rm $out/bin/gns3loopback # For Windows only
|
rm $out/bin/gns3loopback # For Windows only
|
||||||
'';
|
'';
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
description = "Graphical Network Simulator 3 server (${branch} release)";
|
description = "Graphical Network Simulator 3 server (${branch} release)";
|
||||||
longDescription = ''
|
longDescription = ''
|
||||||
|
|
|
@ -8,33 +8,37 @@
|
||||||
, async-timeout
|
, async-timeout
|
||||||
, yarl
|
, yarl
|
||||||
, idna-ssl
|
, idna-ssl
|
||||||
|
, typing-extensions
|
||||||
|
, pytestrunner
|
||||||
, pytest
|
, pytest
|
||||||
, gunicorn
|
, gunicorn
|
||||||
, pytest-mock
|
|
||||||
, async_generator
|
|
||||||
, pytestrunner
|
|
||||||
, pytest-timeout
|
, pytest-timeout
|
||||||
|
, async_generator
|
||||||
|
, pytest_xdist
|
||||||
|
, pytestcov
|
||||||
|
, pytest-mock
|
||||||
|
, trustme
|
||||||
|
, brotlipy
|
||||||
}:
|
}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "aiohttp";
|
pname = "aiohttp";
|
||||||
version = "3.4.4";
|
version = "3.5.2";
|
||||||
|
|
||||||
src = fetchPypi {
|
src = fetchPypi {
|
||||||
inherit pname version;
|
inherit pname version;
|
||||||
sha256 = "1ykm6kdjkrg556j0zd7dx2l1rsrbh0d9g27ivr6dmaahz9pyrbsi";
|
sha256 = "3d851b15e615c0ad619de0990ab94c9721c335aebb58d160bf77a4af963c6b50";
|
||||||
};
|
};
|
||||||
|
|
||||||
disabled = pythonOlder "3.5";
|
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 ]
|
propagatedBuildInputs = [ attrs chardet multidict async-timeout yarl ]
|
||||||
++ lib.optional (pythonOlder "3.7") idna-ssl;
|
++ lib.optionals (pythonOlder "3.7") [ idna-ssl typing-extensions ];
|
||||||
|
|
||||||
|
|
||||||
# Several test failures. Need to be looked into.
|
|
||||||
doCheck = false;
|
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Asynchronous HTTP Client/Server for Python and asyncio";
|
description = "Asynchronous HTTP Client/Server for Python and asyncio";
|
||||||
|
|
|
@ -11,7 +11,8 @@ let
|
||||||
sha256 = "8adda6583ba438a4c70693374e10b60168663ffa6564c5c75d3c7a9055290964";
|
sha256 = "8adda6583ba438a4c70693374e10b60168663ffa6564c5c75d3c7a9055290964";
|
||||||
};
|
};
|
||||||
# TODO: remove after pinning aiohttp to a newer version
|
# 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 {
|
yarl = super.yarl.overridePythonAttrs (oldAttrs: rec {
|
||||||
|
|
Loading…
Reference in New Issue