about summary refs log tree commit diff
path: root/pkgs/development/python-modules/cryptolyzer/default.nix
blob: 2fd90b23bee0a727df300ba0aa7c24e168dfa0db (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
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 ];
  };
}