nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix

sslyze: fix build

need to further relax cryptography module version requirements

(cherry picked from commit d61c16cda48a581dfecfce69099773d9737d5b76)

authored by

Robert Scott and committed by
Jon
ca19375f b582883f

+2 -1
+2 -1
pkgs/development/python-modules/sslyze/default.nix
··· 21 21 22 22 patchPhase = '' 23 23 substituteInPlace setup.py \ 24 - --replace "cryptography>=2.6,<=2.9" "cryptography>=2.6,<=3" 24 + --replace "cryptography>=2.6,<=2.9" "cryptography" 25 25 ''; 26 26 27 27 checkInputs = [ pytest ]; ··· 39 39 tests/plugins_tests/certificate_info/test_certificate_utils.py \ 40 40 -k "not (TestScanner and test_client_certificate_missing)" 41 41 ''; 42 + pythonImportsCheck = [ "sslyze" ]; 42 43 43 44 propagatedBuildInputs = [ nassl cryptography typing-extensions faker ]; 44 45