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
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
setuptools,
aiohttp,
bcrypt,
pyopenssl,
python-gnupg,
requests,
pytestCheckHook,
pyotp,
pytest-cov-stub,
}:
buildPythonPackage rec {
pname = "proton-core";
version = "0.2.0";
pyproject = true;
src = fetchFromGitHub {
owner = "ProtonVPN";
repo = "python-proton-core";
rev = "refs/tags/v${version}";
hash = "sha256-IiKmtgcCSe2q3qaNuUSaC/D/vSQzVq7w8VN2Xq81+tQ=";
};
build-system = [ setuptools ];
dependencies = [
bcrypt
aiohttp
pyopenssl
python-gnupg
requests
];
pythonImportsCheck = [ "proton" ];
nativeCheckInputs = [
pytestCheckHook
pytest-cov-stub
pyotp
];
disabledTestPaths = [
# Single test, requires internet connection
"tests/test_alternativerouting.py"
];
disabledTests = [
# Invalid modulus
"test_modulus_verification"
# Permission denied: '/run'
"test_broken_data"
"test_broken_index"
"test_sessions"
# No working transports found
"test_auto_works_on_prod"
"test_ping"
"test_successful"
"test_without_pinning"
# Failed assertions
"test_bad_pinning_fingerprint_changed"
"test_bad_pinning_url_changed"
];
meta = {
description = "Core logic used by the other Proton components";
homepage = "https://github.com/ProtonVPN/python-proton-core";
license = lib.licenses.gpl3Only;
maintainers = with lib.maintainers; [ sebtm ];
};
}
|