diff --git a/recipes/rethinkdb-python/meta.yaml b/recipes/rethinkdb-python/meta.yaml new file mode 100644 index 0000000000000..dd6829d5a7bcf --- /dev/null +++ b/recipes/rethinkdb-python/meta.yaml @@ -0,0 +1,50 @@ +{% set name = "rethinkdb-python" %} +{% set version = "2.4.10" %} +{% set python_min = python_min|default("3.6") %} + +package: + name: {{ name|lower }} + version: {{ version }} + +source: + url: https://pypi.org/packages/source/{{ name[0] }}/rethinkdb/rethinkdb-{{ version }}.tar.gz + sha256: 55ecf7447dc11fec0e2ce9aac4ba4c0b57fdc5c9c57d77ee673d59d245c74666 + +build: + number: 0 + script: {{ PYTHON }} -m pip install . -vv + noarch: python + skip: true # [win] + +requirements: + host: + - looseversion + - pip + - python {{ python_min }} + - setuptools + - six + run: + - looseversion + - python >={{ python_min }} + - six + - tornado + - trio + +test: + imports: + - rethinkdb + commands: + - pip check + requires: + - pip + - python {{ python_min }} + +about: + home: https://rethinkdb.com/api/python/ + summary: Python driver for RethinkDB + license: Apache-2.0 + license_file: LICENSE + +extra: + recipe-maintainers: + - jeongseok-meta