nixpkgs/pkgs/development/python-modules/sslyze/default.nix

59 lines
1.4 KiB
Nix
Raw Normal View History

2020-05-21 11:33:16 +01:00
{ lib
, fetchFromGitHub
, buildPythonPackage
, nassl
, cryptography
, typing-extensions
, faker
2020-12-04 19:28:18 +00:00
, pytestCheckHook
2021-05-08 10:00:24 +01:00
, pythonOlder
2020-05-21 11:33:16 +01:00
}:
buildPythonPackage rec {
pname = "sslyze";
2021-05-08 10:00:24 +01:00
version = "4.1.0";
disabled = pythonOlder "3.7";
2020-05-21 11:33:16 +01:00
src = fetchFromGitHub {
owner = "nabla-c0d3";
repo = pname;
rev = version;
2021-05-08 10:00:24 +01:00
hash = "sha256-oSTKNiECczlPAbv5Azc023PcquFbnlC5O+8tVgNcUW0=";
2020-05-21 11:33:16 +01:00
};
patchPhase = ''
substituteInPlace setup.py \
2021-05-08 10:00:24 +01:00
--replace "cryptography>=2.6,<3.5" "cryptography>=2.6,<4.0"
2020-05-21 11:33:16 +01:00
'';
2020-12-04 19:28:18 +00:00
checkInputs = [ pytestCheckHook ];
2020-05-21 11:33:16 +01:00
2021-05-08 10:00:24 +01:00
# Most of the tests are online; hence, applicable tests are listed
# explicitly here
pytestFlagsArray = [
"tests/test_main.py"
"tests/test_scanner.py"
"tests/cli_tests/test_console_output.py"
"tests/cli_tests/test_json_output.py"
"tests/cli_tests/test_server_string_parser.py"
"tests/plugins_tests/test_scan_commands.py"
"tests/plugins_tests/certificate_info/test_certificate_utils.py"
];
disabledTests = [
"test_error_client_certificate_needed"
];
pythonImportsCheck = [ "sslyze" ];
2020-05-21 11:33:16 +01:00
propagatedBuildInputs = [ nassl cryptography typing-extensions faker ];
meta = with lib; {
homepage = "https://github.com/nabla-c0d3/sslyze";
description = "Fast and powerful SSL/TLS scanning library";
platforms = platforms.linux ++ platforms.darwin;
2021-05-08 10:00:24 +01:00
license = licenses.agpl3Only;
2020-05-21 11:33:16 +01:00
maintainers = with maintainers; [ veehaitch ];
};
}