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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
|
{
lib,
attrs,
beautifulsoup4,
buildPythonPackage,
certvalidator,
colorama,
cryptoparser,
dnspython,
fetchPypi,
pathlib2,
pyfakefs,
python-dateutil,
requests,
setuptools,
setuptools-scm,
urllib3,
}:
buildPythonPackage rec {
pname = "cryptolyzer";
version = "1.0.2";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-c/cBOrvqyvdGfDKPRUhIu9FqtQUERb/fJBGmncZpbSM=";
};
patches = [
# https://gitlab.com/coroner/cryptolyzer/-/merge_requests/4
./fix-dirs-exclude.patch
];
pythonRemoveDeps = [ "bs4" ];
build-system = [
setuptools
setuptools-scm
];
dependencies = [
attrs
beautifulsoup4
certvalidator
colorama
cryptoparser
dnspython
pathlib2
pyfakefs
python-dateutil
requests
urllib3
];
# Tests require networking
doCheck = false;
postInstall = ''
find $out -name "__pycache__" -type d | xargs rm -rv
# Prevent creating more binary byte code later (e.g. during
# pythonImportsCheck)
export PYTHONDONTWRITEBYTECODE=1
'';
pythonImportsCheck = [ "cryptolyzer" ];
meta = {
description = "Cryptographic protocol analyzer";
homepage = "https://gitlab.com/coroner/cryptolyzer";
changelog = "https://gitlab.com/coroner/cryptolyzer/-/blob/v${version}/CHANGELOG.md";
license = lib.licenses.mpl20;
mainProgram = "cryptolyze";
maintainers = [ ];
teams = with lib.teams; [ ngi ];
};
}
|