From 4055418da9ae895982fec853780019e6f780bec7 Mon Sep 17 00:00:00 2001 From: Jeongseok Lee Date: Sun, 24 Nov 2024 15:53:30 -0800 Subject: [PATCH] Add rethinkdb --- recipes/rethinkdb-python/meta.yaml | 48 ++++++++++++++++++++++++++++++ 1 file changed, 48 insertions(+) create mode 100644 recipes/rethinkdb-python/meta.yaml diff --git a/recipes/rethinkdb-python/meta.yaml b/recipes/rethinkdb-python/meta.yaml new file mode 100644 index 0000000000000..0ffc495b8b1c8 --- /dev/null +++ b/recipes/rethinkdb-python/meta.yaml @@ -0,0 +1,48 @@ +{% set name = "rethinkdb-python" %} +{% set version = "2.4.10" %} + +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 + skip: true # [win] + +requirements: + host: + - looseversion + - pip + - python + - setuptools + - six + run: + - looseversion + - python + - six + - tornado + - trio + +test: + imports: + - rethinkdb + commands: + - pip check + requires: + - pip + - python + +about: + home: https://rethinkdb.com/api/python/ + summary: Python driver for RethinkDB + license: Apache-2.0 + license_file: LICENSE + +extra: + recipe-maintainers: + - jeongseok-meta