From 0bfc98a70292f94520585ebc8bc4963723aa1b01 Mon Sep 17 00:00:00 2001 From: John Kirkham Date: Wed, 10 Aug 2016 00:56:04 -0400 Subject: [PATCH] recipes: Add pylint-celery. --- recipes/pylint-celery/meta.yaml | 43 +++++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100644 recipes/pylint-celery/meta.yaml diff --git a/recipes/pylint-celery/meta.yaml b/recipes/pylint-celery/meta.yaml new file mode 100644 index 0000000000000..33b68875c8333 --- /dev/null +++ b/recipes/pylint-celery/meta.yaml @@ -0,0 +1,43 @@ +{% set name = "pylint-celery" %} +{% set version = "0.3" %} +{% set sha256 = "41e32094e7408d15c044178ea828dd524beedbdbe6f83f712c5e35bde1de4beb" %} + +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: + number: 0 + script: python setup.py install --single-version-externally-managed --record=record.txt + +requirements: + build: + - python + - setuptools + - pylint >=1.0 + - astroid >=1.0 + - pylint-plugin-utils >=0.2.1 + + run: + - python + - pylint >=1.0 + - astroid >=1.0 + - pylint-plugin-utils >=0.2.1 + +test: + imports: + - pylint_celery + +about: + home: https://github.com/landscapeio/pylint-celery + license: GPL 2 + summary: 'pylint-celery is a Pylint plugin to aid Pylint in recognising and understandingerrors caused when using the Celery library' + +extra: + recipe-maintainers: + - jakirkham