Skip to content

Commit

Permalink
Merge pull request #13283 from bretttully/wagyu
Browse files Browse the repository at this point in the history
First pass at wagyu python port
  • Loading branch information
synapticarbors authored Nov 23, 2020
2 parents 3787a9f + d42c134 commit 9941547
Show file tree
Hide file tree
Showing 2 changed files with 85 additions and 0 deletions.
41 changes: 41 additions & 0 deletions recipes/reprit/meta.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
{% set name = "reprit" %}
{% set version = "0.3.1" %}

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

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

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

requirements:
host:
- python
- pip
run:
- python

test:
imports:
- reprit

about:
home: https://github.com/lycantropos/reprit
license: MIT
license_family: MIT
license_file: LICENSE
summary: 'Auto __repr__ method generation.'
description: 'Auto __repr__ method generation.'
doc_url: https://reprit.readthedocs.io/en/latest
dev_url: https://github.com/lycantropos/reprit

extra:
recipe-maintainers:
- bretttully
- lycantropos
44 changes: 44 additions & 0 deletions recipes/wagyu/meta.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
{% set name = "wagyu" %}
{% set version = "0.2.2" %}

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

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

build:
number: 0
script: "{{ PYTHON }} -m pip install . -vv"

requirements:
build:
- {{ compiler('cxx') }}
host:
- python
- pip
- pybind11 >=2.6.1
run:
- python
- reprit >=0.3.1

test:
imports:
- wagyu

about:
home: https://github.com/lycantropos/wagyu
license: MIT
license_family: MIT
license_file: LICENSE
summary: 'Python port of mapbox/wagyu library.'
description: 'Python port of mapbox/wagyu library.'
doc_url: https://github.com/lycantropos/wagyu
dev_url: https://github.com/lycantropos/wagyu

extra:
recipe-maintainers:
- bretttully
- lycantropos

0 comments on commit 9941547

Please sign in to comment.