python3Packages.cryptolyzer: init at 0.8.1

This commit is contained in:
Ilan Joselevich 2022-08-04 20:59:20 +03:00 committed by Kranzes
parent 31bf0a4523
commit 0081536ce5
2 changed files with 43 additions and 0 deletions

View File

@ -0,0 +1,41 @@
{ lib
, buildPythonPackage
, fetchPypi
, certvalidator
, attrs
, six
, urllib3
, cryptoparser
, requests
}:
buildPythonPackage rec {
pname = "cryptolyzer";
version = "0.8.1";
src = fetchPypi {
pname = "CryptoLyzer";
inherit version;
sha256 = "sha256-FbxSjKxhzlpj3IezuLCQvoeZMG1q+OE/yn5vB/XE1rI=";
};
propagatedBuildInputs = [
certvalidator
attrs
six
urllib3
cryptoparser
requests
];
doCheck = false; # Tests require networking
pythonImportsCheck = [ "cryptolyzer" ];
meta = with lib; {
description = "Fast and flexible cryptographic protocol analyzer";
homepage = "https://gitlab.com/coroner/cryptolyzer";
license = licenses.mpl20;
maintainers = with maintainers; [ kranzes ];
};
}

View File

@ -2027,6 +2027,8 @@ in {
inherit (pkgs.darwin.apple_sdk.frameworks) Security;
};
cryptolyzer = callPackage ../development/python-modules/cryptolyzer { };
cryptoparser = callPackage ../development/python-modules/cryptoparser { };
crytic-compile = callPackage ../development/python-modules/crytic-compile { };