python3Packages.cryptoparser: init at 0.8.0

This commit is contained in:
Ilan Joselevich 2022-08-04 20:58:06 +03:00 committed by Kranzes
parent a53adf6e7d
commit 31bf0a4523
2 changed files with 36 additions and 0 deletions

View file

@ -0,0 +1,34 @@
{ lib
, buildPythonPackage
, fetchPypi
, attrs
, six
, asn1crypto
, python-dateutil
}:
buildPythonPackage rec {
pname = "cryptoparser";
version = "0.8.0";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-kJg8d1PoGIC0feefbJM8oyXcRyMGdg1wWkQUl/nSNCo=";
};
propagatedBuildInputs = [
attrs
six
asn1crypto
python-dateutil
];
pythonImportsCheck = [ "cryptoparser" ];
meta = with lib; {
description = "Fast and flexible security protocol parser and generator";
homepage = "https://gitlab.com/coroner/cryptoparser";
license = licenses.mpl20;
maintainers = with maintainers; [ kranzes ];
};
}

View file

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