python3Packages.pytest-sanic: allow later websockets releases

This commit is contained in:
Fabian Affolter 2021-06-08 10:52:57 +02:00
parent 0d688b843d
commit efe210cec8

View file

@ -21,7 +21,9 @@ buildPythonPackage rec {
sha256 = "sha256-OtyulpSHUWERtcIRT5j3YtHciIxFiIFYKqtlEd1NSFw=";
};
buildInputs = [ pytest ];
buildInputs = [
pytest
];
propagatedBuildInputs = [
aiohttp
@ -36,6 +38,12 @@ buildPythonPackage rec {
pytestCheckHook
];
postPatch = ''
# https://github.com/yunstanford/pytest-sanic/issues/55
substituteInPlace setup.py \
--replace "websockets>=8.1,<9.0" "websockets>=9.1,<10.0"
'';
disabledTests = [
# https://github.com/yunstanford/pytest-sanic/issues/51
"test_fixture_sanic_client_get"