Skip to content

Commit

Permalink
Add pykafka recipe
Browse files Browse the repository at this point in the history
  • Loading branch information
mrocklin committed Oct 1, 2017
1 parent 0aa89db commit dc22eed
Showing 1 changed file with 49 additions and 0 deletions.
49 changes: 49 additions & 0 deletions recipes/pykafka/meta.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
{% set name = "pykafka" %}
{% set version = "2.6.0" %}
{% set sha256 = "19e4a802b00e28c3203fcfd80ca440b13faecb8e58171e9685a044cf87dae93e" %}

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 >=1.5
- kazoo
- tabulate
- librdkafka

test:
imports:
- pykafka

about:
home: http://github.com/parsely/pykafka
license: Apache-2.0
license_family: Apache
license_file: LICENSE
summary: 'Apache Kafka client for Python; high-level & low-level consumer/producer, with great performance'

# The remaining entries in this section are optional, but recommended
description: Apache Kafka client for Python; high-level & low-level consumer/producer, with great performance
doc_url: http://pykafka.readthedocs.org/
dev_url: https://github.com/parsely/pykafka

extra:
recipe-maintainers:
- mrocklin
- emmett9001

0 comments on commit dc22eed

Please sign in to comment.