From fcfd155043ce064ad41cbd3471a44996aa36a340 Mon Sep 17 00:00:00 2001 From: John Kirkham Date: Thu, 19 May 2016 01:48:24 -0400 Subject: [PATCH] webcolors: Add webcolors for testing. --- recipes/webcolors/meta.yaml | 38 +++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 recipes/webcolors/meta.yaml diff --git a/recipes/webcolors/meta.yaml b/recipes/webcolors/meta.yaml new file mode 100644 index 0000000000000..84eb233089a18 --- /dev/null +++ b/recipes/webcolors/meta.yaml @@ -0,0 +1,38 @@ +{% set version = "1.5" %} + +package: + name: webcolors + version: {{ version }} + +source: + fn: webcolors-{{ version }}.tar.gz + url: https://pypi.python.org/packages/source/w/webcolors/webcolors-{{ version }}.tar.gz + md5: 2e9da1bbb7a087c6108e05be64640afb + +build: + number: 0 + script: + - source activate "${CONDA_DEFAULT_ENV}" # [unix] + - activate "%CONDA_DEFAULT_ENV%" # [win] + - pip install . + +requirements: + build: + - python + - python-toolchain + + run: + - python + +test: + imports: + - webcolors + +about: + home: https://github.com/ubernostrum/webcolors + license: BSD License + summary: 'A library for working with color names and color value formats defined by the HTML and CSS specifications for use in documents on the Web.' + +extra: + recipe-maintainers: + - jakirkham