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

added package py_ecc #28985

Merged
merged 4 commits into from
Feb 11, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
45 changes: 45 additions & 0 deletions recipes/py_ecc/meta.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
{% set name = "py_ecc" %}
{% set version = "7.0.1" %}

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

source:
url: https://pypi.org/packages/source/{{ name[0] }}/{{ name }}/py_ecc-{{ version }}.tar.gz
sha256: 557461f42e57294d734305a30faf6b8903421651871e9cdeff8d8e67c6796c70

build:
noarch: python
script: {{ PYTHON }} -m pip install . -vv --no-deps --no-build-isolation
number: 0

requirements:
host:
- python {{ python_min }}
- setuptools
- pip
run:
- python >={{ python_min }}
- eth-typing >=3.0.0
- eth-utils >=2.0.0
- cached-property >=1.5.1

test:
imports:
- py_ecc
commands:
- pip check
requires:
- pip
- python {{ python_min }}

about:
home: https://github.com/ethereum/py_ecc
summary: 'py-ecc: Elliptic curve crypto in python including secp256k1, alt_bn128, and bls12_381'
license: MIT
license_file: LICENSE

extra:
recipe-maintainers:
- step21