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 aicspylibczi recipe #18157

Draft
wants to merge 10 commits into
base: main
Choose a base branch
from
Draft
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
54 changes: 54 additions & 0 deletions recipes/aicspylibczi/meta.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
{% set name = "aicspylibczi" %}
{% set version = "3.1.2" %}

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

source:
- url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/aicspylibczi-{{ version }}.tar.gz
sha256: d903caaac5576922f8dd4b1170fae3421fb9d203128b4d8ecb11681173e7046c

build:
script: {{ PYTHON }} -m pip install . -vv
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is running cmake behind the scenes, which relies on a vendored pybind11 submodule and some other stuff. We might need to patch things to make it conda-forge friendly.

number: 0
skip: true # [py<37]

requirements:
build:
- {{ compiler('cxx') }}
- cmake
- make
host:
- libpng
- python
- pip
- pytest-runner
- zlib
run:
- numpy >=1.14.1
- python

test:
imports:
- aicspylibczi
commands:
- pip list
- pip check
requires:
- pip

about:
home: https://github.com/AllenCellModeling/aicspylibczi
summary: A python module and a python extension for Zeiss (CZI/ZISRAW) microscopy files.
license: GPL-3.0-only
license_file:
- LICENSE
- pybind11/LICENSE
- libCZI/COPYING.LESSER
- libCZI/COPYING

extra:
recipe-maintainers:
- evamaxfield
- goanpeca