blob: 748b5012947264b3fd82a01a62492ea47391eb64 (
plain)
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
|
{
lib,
stdenv,
buildPythonPackage,
fetchFromGitHub,
replaceVars,
bcrypt,
pyopenssl,
python-gnupg,
pytestCheckHook,
requests,
openssl,
}:
buildPythonPackage rec {
pname = "proton-client";
version = "0.7.1";
format = "setuptools";
src = fetchFromGitHub {
owner = "ProtonMail";
repo = "proton-python-client";
rev = version;
hash = "sha256-mhPq9O/LCu3+E1jKlaJmrI8dxbA9BIwlc34qGwoxi5g=";
};
propagatedBuildInputs = [
bcrypt
pyopenssl
python-gnupg
requests
];
buildInputs = [ openssl ];
patches = [
# Patches library by fixing the openssl path
(replaceVars ./0001-OpenSSL-path-fix.patch {
openssl = openssl.out;
ext = stdenv.hostPlatform.extensions.sharedLibrary;
})
];
nativeCheckInputs = [ pytestCheckHook ];
disabledTests = [
#ValueError: Invalid modulus
"test_modulus_verification"
];
pythonImportsCheck = [ "proton" ];
meta = {
description = "Python Proton client module";
homepage = "https://github.com/ProtonMail/proton-python-client";
license = lib.licenses.gpl3Only;
maintainers = [ ];
platforms = lib.platforms.linux;
};
}
|