Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add kazoo recipe #4090

Merged
merged 1 commit into from
Oct 1, 2017
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
44 changes: 44 additions & 0 deletions recipes/kazoo/meta.yaml
Original file line number Diff line number Diff line change
@@ -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