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
|
{
lib,
buildPythonPackage,
charset-normalizer,
dsinternals,
fetchPypi,
flask,
ldap3,
ldapdomaindump,
pyasn1,
pyasn1-modules,
pycryptodomex,
pyopenssl,
pythonOlder,
setuptools,
pytestCheckHook,
six,
}:
buildPythonPackage rec {
pname = "impacket";
version = "0.12.0";
pyproject = true;
disabled = pythonOlder "3.8";
src = fetchPypi {
inherit pname version;
hash = "sha256-iVh9G4NqUiDXSEjJNHV5YrOCiG3KixtKDETWk/JgBkM=";
};
pythonRelaxDeps = [ "pyopenssl" ];
build-system = [ setuptools ];
dependencies = [
charset-normalizer
dsinternals
flask
ldap3
ldapdomaindump
pyasn1
pyasn1-modules
pycryptodomex
pyopenssl
setuptools
six
];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "impacket" ];
disabledTestPaths = [
# Skip all RPC related tests
"tests/dcerpc/"
"tests/SMB_RPC/"
];
meta = with lib; {
description = "Network protocols Constructors and Dissectors";
homepage = "https://github.com/SecureAuthCorp/impacket";
changelog =
"https://github.com/fortra/impacket/releases/tag/impacket_"
+ replaceStrings [ "." ] [ "_" ] version;
# Modified Apache Software License, Version 1.1
license = licenses.free;
maintainers = with maintainers; [ fab ];
};
}
|