python3Packages.sslyze: 3.1.0 -> 4.1.0

This commit is contained in:
Vincent Haupert 2021-05-08 11:00:24 +02:00 committed by Jonathan Ringer
parent 165c28d463
commit f43b4c18d8

View file

@ -6,39 +6,44 @@
, typing-extensions , typing-extensions
, faker , faker
, pytestCheckHook , pytestCheckHook
, pythonOlder
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "sslyze"; pname = "sslyze";
version = "3.1.0"; version = "4.1.0";
disabled = pythonOlder "3.7";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "nabla-c0d3"; owner = "nabla-c0d3";
repo = pname; repo = pname;
rev = version; rev = version;
sha256 = "02p0lgpkfq88dys0dqw0z8bpg9g8pds2lvs9awd9f2w5cb1pwr83"; hash = "sha256-oSTKNiECczlPAbv5Azc023PcquFbnlC5O+8tVgNcUW0=";
}; };
patchPhase = '' patchPhase = ''
substituteInPlace setup.py \ substituteInPlace setup.py \
--replace "cryptography>=2.6,<3.3" "cryptography>=2.6,<4.0" --replace "cryptography>=2.6,<3.5" "cryptography>=2.6,<4.0"
''; '';
checkInputs = [ pytestCheckHook ]; checkInputs = [ pytestCheckHook ];
checkPhase = '' # Most of the tests are online; hence, applicable tests are listed
# Most of the tests are online; hence, applicable tests are listed # explicitly here
# explicitly here pytestFlagsArray = [
pytest \ "tests/test_main.py"
tests/test_main.py \ "tests/test_scanner.py"
tests/test_scanner.py \ "tests/cli_tests/test_console_output.py"
tests/cli_tests/test_console_output.py \ "tests/cli_tests/test_json_output.py"
tests/cli_tests/test_json_output.py \ "tests/cli_tests/test_server_string_parser.py"
tests/cli_tests/test_server_string_parser.py \ "tests/plugins_tests/test_scan_commands.py"
tests/plugins_tests/test_scan_commands.py \ "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)"
''; disabledTests = [
"test_error_client_certificate_needed"
];
pythonImportsCheck = [ "sslyze" ]; pythonImportsCheck = [ "sslyze" ];
propagatedBuildInputs = [ nassl cryptography typing-extensions faker ]; propagatedBuildInputs = [ nassl cryptography typing-extensions faker ];
@ -47,7 +52,7 @@ buildPythonPackage rec {
homepage = "https://github.com/nabla-c0d3/sslyze"; homepage = "https://github.com/nabla-c0d3/sslyze";
description = "Fast and powerful SSL/TLS scanning library"; description = "Fast and powerful SSL/TLS scanning library";
platforms = platforms.linux ++ platforms.darwin; platforms = platforms.linux ++ platforms.darwin;
license = licenses.agpl3; license = licenses.agpl3Only;
maintainers = with maintainers; [ veehaitch ]; maintainers = with maintainers; [ veehaitch ];
}; };
} }