tangled
alpha
login
or
join now
tjh.dev
/
nixpkgs
Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
0
fork
atom
overview
issues
pulls
pipelines
python3Packages.aiohttp: fix tests
Frederik Rietdijk
6 years ago
33263a7e
8ea49633
+2
-6
1 changed file
expand all
collapse all
unified
split
pkgs
development
python-modules
aiohttp
default.nix
+2
-6
pkgs/development/python-modules/aiohttp/default.nix
···
40
propagatedBuildInputs = [ attrs chardet multidict async-timeout yarl ]
41
++ lib.optionals (pythonOlder "3.7") [ idna-ssl typing-extensions ];
42
43
-
# Don't error on cryptography deprecation warning
44
-
postPatch = ''
45
-
substituteInPlace pytest.ini --replace "filterwarnings = error" ""
46
'';
47
-
48
-
# coroutine 'noop2' was never awaited
49
-
doCheck = false;
50
51
meta = with lib; {
52
description = "Asynchronous HTTP Client/Server for Python and asyncio";
···
40
propagatedBuildInputs = [ attrs chardet multidict async-timeout yarl ]
41
++ lib.optionals (pythonOlder "3.7") [ idna-ssl typing-extensions ];
42
43
+
checkPhase = ''
44
+
pytest -k "not test__get_valid_log_format_exc and not test_access_logger_atoms"
0
45
'';
0
0
0
46
47
meta = with lib; {
48
description = "Asynchronous HTTP Client/Server for Python and asyncio";