Package Details: python-ckzg 2.1.7-1

Git Clone URL: https://aur.archlinux.org/python-ckzg.git (read-only, click to copy)
Package Base: python-ckzg
Description: A minimal implementation of the Polynomial Commitments API for EIP-4844 and EIP-7594, written in C.
Upstream URL: https://github.com/ethereum/c-kzg-4844
Licenses: MIT
Submitter: Xeonacid
Maintainer: Xeonacid (lilac)
Last Packager: lilac
Votes: 0
Popularity: 0.000000
First Submitted: 2025-01-14 05:52 (UTC)
Last Updated: 2026-03-11 20:20 (UTC)

Latest Comments

rod2ik commented on 2025-12-31 15:07 (UTC) (edited on 2025-12-31 18:04 (UTC) by rod2ik)

If you encounter an error with "/dev/null" during prepare, you can modify the prepare() function in the PKGBUILD hereso:

prepare() {
  cd c-kzg-4844

  git submodule init blst
  git config submodule.blst.url ../blst
  git -c protocol.file.allow=always submodule update blst

  # Conflict with $CFLAGS
  sed -i 's/-Werror//g' src/Makefile
}

It should work. Please confirm :)