02cf88bb76
GitOrigin-RevId: c4a0efdd5a728e20791b8d8d2f26f90ac228ee8d
41 lines
760 B
Nix
41 lines
760 B
Nix
{ 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 ];
|
|
};
|
|
}
|