From 5ab6c4babc1897e9b74ccf7fbb3178328e931758 Mon Sep 17 00:00:00 2001 From: Daniel K Lyons <dlyons@nrao.edu> Date: Fri, 29 May 2020 08:56:47 -0600 Subject: [PATCH] forgot about blessings --- support/conda/blessings/meta.yaml | 36 +++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 support/conda/blessings/meta.yaml diff --git a/support/conda/blessings/meta.yaml b/support/conda/blessings/meta.yaml new file mode 100644 index 000000000..e45bdc769 --- /dev/null +++ b/support/conda/blessings/meta.yaml @@ -0,0 +1,36 @@ +{% set name = "blessings" %} +{% set version = "1.7" %} + +package: + name: "{{ name|lower }}" + version: "{{ version }}" + +source: + url: "https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz" + sha256: "98e5854d805f50a5b58ac2333411b0482516a8210f23f43308baeb58d77c157d" + +build: + number: 0 + script: "{{ PYTHON }} -m pip install . --no-deps --ignore-installed -vv " + +requirements: + host: + - pip + - python + run: + - python + +test: + imports: + - blessings + requires: + - six + +about: + home: "https://github.com/erikrose/blessings" + license: "MIT" + license_family: "MIT" + license_file: "" + summary: " description='A thin, practical wrapper around terminal coloring, styling, and positioning" + doc_url: "" + dev_url: "" -- GitLab