Skip to content
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
41 changes: 41 additions & 0 deletions recipes/varint/meta.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
{% set name = "varint" %}
{% set version = "1.0.2" %}


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

source:
url: https://github.com/fmoo/python-varint/archive/{{ version }}.tar.gz
sha256: 8bf59ea0b2774478d757c7f0b256d1cb19b62aace29791565f260cbc29febcd0

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

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

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

about:
home: http://github.com/fmoo/python-varint
summary: Simple python varint implementation
license: MIT
license_file: LICENSE
Comment thread
step21 marked this conversation as resolved.

extra:
recipe-maintainers:
- step21