blob: bd58724a10bd026dbceffac3f0cec5510631f0d8 (
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,
buildPythonPackage,
fetchFromGitHub,
setuptools,
clang,
# dependencies
pyyaml,
blst,
# checkPhase dependencies
python,
}:
buildPythonPackage rec {
pname = "ckzg";
version = "2.1.5";
pyproject = true;
src = fetchFromGitHub {
owner = "ethereum";
repo = "c-kzg-4844";
tag = "v${version}";
hash = "sha256-Sv22Cj1PRMUi9k+0Yj6yi8vCsOr+bVF7QdmQOqJIkBY=";
};
build-system = [ setuptools ];
nativeBuildInputs = [ clang ];
dependencies = [
pyyaml
blst
];
postPatch =
# unvendor "blst"
''
substituteInPlace setup.py \
--replace-fail '"build_ext": CustomBuild,' ""
'';
checkPhase = ''
runHook preCheck
cd bindings/python
${python.interpreter} tests.py
runHook postCheck
'';
pythonImportsCheck = [ "ckzg" ];
meta = {
description = "Minimal implementation of the Polynomial Commitments API for EIP-4844 and EIP-7594";
homepage = "https://github.com/ethereum/c-kzg-4844";
changelog = "https://github.com/ethereum/c-kzg-4844/releases/tag/${src.tag}";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ hellwolf ];
};
}
|