From 7a810d7db2c1f4a4ac94df8f2e6f9d9fb30282fa 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 | 44 +++++++++++++++++++++++++++++++++ 1 file changed, 44 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..88739286509ee --- /dev/null +++ b/recipes/pylint-celery/meta.yaml @@ -0,0 +1,44 @@ +{% set name = "pylint-celery" %} +{% set version = "0.3" %} +{% set sha256 = "41e32094e7408d15c044178ea828dd524beedbdbe6f83f712c5e35bde1de4beb" %} + +package: + name: {{ name|lower }} + version: {{ version }} + +source: + {% set pypi_name = name.replace("_", "-") %} + fn: {{ name }}-{{ version }}.tar.gz + url: https://pypi.io/packages/source/{{ pypi_name[0] }}/{{ pypi_name }}/{{ pypi_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