blob: d35207c1feeed698b29cc75a882be06e8e95b8f6 (
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
|
{
lib,
buildPythonPackage,
callPackage,
fetchFromGitHub,
gmp,
setuptools,
}:
let
test-vectors = callPackage ./vectors.nix { };
in
buildPythonPackage rec {
pname = "pycryptodome";
version = "3.23.0";
pyproject = true;
src = fetchFromGitHub {
owner = "Legrandin";
repo = "pycryptodome";
tag = "v${version}";
hash = "sha256-x8QkRBwM/H/n7yHGjE8UfBhOzkGr0PBixe9g4EuZLUg=";
};
postPatch = ''
substituteInPlace lib/Crypto/Math/_IntegerGMP.py \
--replace-fail 'load_lib("gmp"' 'load_lib("${gmp}/lib/libgmp.so.10"'
'';
build-system = [ setuptools ];
nativeCheckInputs = [ test-vectors ];
pythonImportsCheck = [ "Crypto" ];
meta = {
description = "Self-contained cryptographic library";
homepage = "https://github.com/Legrandin/pycryptodome";
changelog = "https://github.com/Legrandin/pycryptodome/blob/${src.tag}/Changelog.rst";
license = with lib.licenses; [
bsd2 # and
asl20
];
maintainers = with lib.maintainers; [ fab ];
};
}
|