about summary refs log tree commit diff
path: root/pkgs/development/python-modules/cryptolyzer
diff options
context:
space:
mode:
authorIlan Joselevich <personal@ilanjoselevich.com>2022-08-04 20:59:20 +0300
committerKranzes <personal@ilanjoselevich.com>2022-08-07 02:28:57 +0300
commit0081536ce57bbfc86462358b55bfbf4a27fbb4e9 (patch)
treeafc6eee2dd0a00a829ea6368325084c1e3fb7e8c /pkgs/development/python-modules/cryptolyzer
parent31bf0a4523132b5f55edb2cfb2a22237bdac3480 (diff)
python3Packages.cryptolyzer: init at 0.8.1
Diffstat (limited to 'pkgs/development/python-modules/cryptolyzer')
-rw-r--r--pkgs/development/python-modules/cryptolyzer/default.nix41
1 files changed, 41 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/cryptolyzer/default.nix b/pkgs/development/python-modules/cryptolyzer/default.nix
new file mode 100644
index 0000000000000..2fd90b23bee0a
--- /dev/null
+++ b/pkgs/development/python-modules/cryptolyzer/default.nix
@@ -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 ];
+  };
+}