3
0
Fork 0
forked from mirrors/nixpkgs

Merge #180518: python310Packages.selenium: fix dependencies

...into staging-next
This commit is contained in:
Vladimír Čunát 2022-07-08 07:27:08 +02:00
commit 7147d42084
No known key found for this signature in database
GPG key ID: E747DF1F9575A3AA
2 changed files with 9 additions and 5 deletions

View file

@ -35,7 +35,8 @@ buildPythonPackage rec {
trio
trio-websocket
urllib3
] ++ urllib3.optional-dependencies.socks;
] ++ urllib3.optional-dependencies.secure
++ urllib3.optional-dependencies.socks;
checkInputs = [
pytestCheckHook

View file

@ -2,14 +2,18 @@
, brotli
, brotlicffi
, buildPythonPackage
, python-dateutil
, certifi
, cryptography
, fetchPypi
, idna
, isPyPy
, mock
, pyopenssl
, pysocks
, pytest-freezegun
, pytest-timeout
, pytestCheckHook
, python-dateutil
, tornado
, trustme
}:
@ -61,9 +65,8 @@ buildPythonPackage rec {
passthru.optional-dependencies = {
brotli = if isPyPy then [ brotlicffi ] else [ brotli ];
# we are removing secure dependencies as they are no longer relevant with py3:
# https://urllib3.readthedocs.io/en/stable/reference/contrib/pyopenssl.html
# secure = [ certifi cryptography idna pyopenssl ];
# Use carefully since pyopenssl is not supported aarch64-darwin
secure = [ certifi cryptography idna pyopenssl ];
socks = [ pysocks ];
};