mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-03 12:23:02 +00:00
python3Packages.pytest-sanic: allow later websockets releases
This commit is contained in:
parent
0d688b843d
commit
efe210cec8
@ -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"
|
||||
|
Loading…
Reference in New Issue
Block a user