python312Packages.ckzg: 2.0.1 -> 2.1.0

This commit is contained in:
R. Ryantm
2025-03-18 02:30:37 +00:00
parent 7bff569ce4
commit 2b75cbbf41
@@ -13,14 +13,14 @@
buildPythonPackage rec {
pname = "ckzg";
version = "2.0.1";
version = "2.1.0";
pyproject = true;
src = fetchFromGitHub {
owner = "ethereum";
repo = "c-kzg-4844";
tag = "v${version}";
hash = "sha256-kOoodri80p5tz8RlMz6mqsZRAuXBxZm4vr+VWJEtfA0=";
hash = "sha256-gmH3JR05LkZvjYXf25Ar3rfh9DqabqJr7Vpe1QuRqNA=";
};
build-system = [ setuptools ];
@@ -53,7 +53,7 @@ buildPythonPackage rec {
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/v${version}";
changelog = "https://github.com/ethereum/c-kzg-4844/releases/tag/${src.tag}";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ hellwolf ];
};