Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add recipe for ckzg #26068

Open
wants to merge 17 commits into
base: main
Choose a base branch
from
48 changes: 48 additions & 0 deletions recipes/ckzg/meta.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
{% set name = "ckzg" %}
{% set version = "1.0.2" %}

package:
name: {{ name|lower }}
version: {{ version }}

source:
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/ckzg-{{ version }}.tar.gz
jakirkham marked this conversation as resolved.
Show resolved Hide resolved
sha256: 4295acc380f8d42ebea4a4a0a68c424a322bb335a33bad05c72ead8cbb28d118

build:
script: {{ PYTHON }} -m pip install . -vv
number: 0
skip: true # [win]

requirements:
build:
- make
- {{ compiler('c') }}
- {{ stdlib('c') }}
- python # [build_platform != target_platform]
- cross-python_{{ target_platform }} # [build_platform != target_platform]
host:
- python
- pip
run:
- python

test:
imports:
- ckzg
commands:
- pip check
requires:
- pip

about:
home: https://github.com/ethereum/c-kzg-4844
summary: Python bindings for C-KZG-4844
license: Apache-2.0
license_file:
- LICENSE
- blst/LICENSE

extra:
recipe-maintainers:
- step21
Loading