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 winloop package #28817

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

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

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

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

requirements:
build:
- {{ compiler('c') }}
- {{ stdlib("c") }}
host:
- python
- setuptools >=60
- wheel
- cython >=3.0,<4.dev0
- pip
run:
- python

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

about:
home: https://github.com/Vizonex/Winloop
summary: Windows version of uvloop
license: Apache-2.0 AND MIT AND EPL-2.0
license_file:
- LICENSE-APACHE
- LICENSE-MIT
- vendor/libuv/LICENSE
- vendor/libuv/LICENSE-docs
- vendor/libuv/LICENSE-extra

extra:
recipe-maintainers:
- owenlamont
Loading