blob: 8391335dc0b7062e190bae553aef8dcb07bea719 (
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
|
{
lib,
stdenv,
buildPythonPackage,
fetchFromGitHub,
httpx,
libiconv,
nettle,
pcsclite,
pkg-config,
pytestCheckHook,
rustPlatform,
vcrpy,
}:
buildPythonPackage rec {
pname = "johnnycanencrypt";
version = "0.16.0";
pyproject = true;
src = fetchFromGitHub {
owner = "kushaldas";
repo = "johnnycanencrypt";
tag = "v${version}";
hash = "sha256-9T8B6zG3zMOBMX9C+u34MGBAgQ8YR44CW2BTdO1CciI=";
};
cargoDeps = rustPlatform.fetchCargoVendor {
inherit pname version src;
hash = "sha256-V1z16GKaSQVjp+stWir7kAO2wsnOYPdhKi4KzIKmKx8=";
};
build-system = with rustPlatform; [
bindgenHook
cargoSetupHook
maturinBuildHook
];
nativeBuildInputs = [
pkg-config
]
++ (with rustPlatform; [
bindgenHook
cargoSetupHook
maturinBuildHook
]);
buildInputs = [
nettle
]
++ lib.optionals stdenv.hostPlatform.isLinux [ pcsclite ]
++ lib.optionals stdenv.hostPlatform.isDarwin [
libiconv
];
dependencies = [ httpx ];
nativeCheckInputs = [
pytestCheckHook
vcrpy
];
preCheck = ''
# import from $out
rm -r johnnycanencrypt
'';
pythonImportsCheck = [ "johnnycanencrypt" ];
meta = {
description = "Python module for OpenPGP written in Rust";
homepage = "https://github.com/kushaldas/johnnycanencrypt";
changelog = "https://github.com/kushaldas/johnnycanencrypt/blob/v${version}/changelog.md";
license = lib.licenses.lgpl3Plus;
maintainers = with lib.maintainers; [ _0x4A6F ];
};
}
|