Skip to content
This repository has been archived by the owner on Apr 12, 2021. It is now read-only.

Commit

Permalink
sslyze: fix build
Browse files Browse the repository at this point in the history
need to further relax cryptography module version requirements
  • Loading branch information
risicle authored and FRidh committed Sep 20, 2020
1 parent 670fe11 commit d61c16c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pkgs/development/python-modules/sslyze/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ buildPythonPackage rec {

patchPhase = ''
substituteInPlace setup.py \
--replace "cryptography>=2.6,<=2.9" "cryptography>=2.6,<=3"
--replace "cryptography>=2.6,<=2.9" "cryptography"
'';

checkInputs = [ pytest ];
Expand All @@ -39,6 +39,7 @@ buildPythonPackage rec {
tests/plugins_tests/certificate_info/test_certificate_utils.py \
-k "not (TestScanner and test_client_certificate_missing)"
'';
pythonImportsCheck = [ "sslyze" ];

propagatedBuildInputs = [ nassl cryptography typing-extensions faker ];

Expand Down

0 comments on commit d61c16c

Please sign in to comment.