diff --git a/recipes/kazoo/meta.yaml b/recipes/kazoo/meta.yaml new file mode 100644 index 0000000000000..7d9d517e296f8 --- /dev/null +++ b/recipes/kazoo/meta.yaml @@ -0,0 +1,44 @@ +{% set name = "kazoo" %} +{% set version = "2.4.0" %} +{% set sha256 = "a7c2d1d7ddb047c936d368e31b08a93bb327ffa46606fe85f550a37ce608c29b" %} + +package: + name: {{ name|lower }} + version: {{ version }} + +source: + fn: {{ name }}-{{ version }}.tar.gz + url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz + sha256: {{ sha256 }} + +build: + noarch: python + number: 0 + script: python setup.py install --single-version-externally-managed --record record.txt + +requirements: + build: + - python + - setuptools + run: + - python + - six + +test: + imports: + - kazoo + +about: + home: http://github.com/python-zk/kazoo + license: Apache-2.0 + license_family: Apache + license_file: LICENSE + summary: 'Kazoo is a high-level Python library that makes it easier to use Apache Zookeeper' + + description: Kazoo is a high-level Python library that makes it easier to use Apache Zookeeper + doc_url: https://kazoo.readthedocs.io/ + dev_url: https://github.com/python-zk/kazoo + +extra: + recipe-maintainers: + - mrocklin