sslyze: fix build

need to further relax cryptography module version requirements
This commit is contained in:
Robert Scott
2020-09-20 08:57:11 +02:00
committed by Frederik Rietdijk
parent 670fe111f4
commit d61c16cda4
@@ -21,7 +21,7 @@ buildPythonPackage rec {
patchPhase = '' patchPhase = ''
substituteInPlace setup.py \ substituteInPlace setup.py \
--replace "cryptography>=2.6,<=2.9" "cryptography>=2.6,<=3" --replace "cryptography>=2.6,<=2.9" "cryptography"
''; '';
checkInputs = [ pytest ]; checkInputs = [ pytest ];
@@ -39,6 +39,7 @@ buildPythonPackage rec {
tests/plugins_tests/certificate_info/test_certificate_utils.py \ tests/plugins_tests/certificate_info/test_certificate_utils.py \
-k "not (TestScanner and test_client_certificate_missing)" -k "not (TestScanner and test_client_certificate_missing)"
''; '';
pythonImportsCheck = [ "sslyze" ];
propagatedBuildInputs = [ nassl cryptography typing-extensions faker ]; propagatedBuildInputs = [ nassl cryptography typing-extensions faker ];