Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add warrant-lite, envs #10413

Merged
merged 8 commits into from
Dec 11, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
51 changes: 51 additions & 0 deletions recipes/envs/meta.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
{% set name = "envs" %}
{% set version = "1.3" %}

package:
name: {{ name|lower }}
version: {{ version }}

source:
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz
sha256: ccf5cd85ddb8ed335e39ed8a22e0d23658f5a6d7da430f225e6f750c6f50ae42

build:
noarch: python
number: 0
entry_points:
- envs=envs.cli:envs
script: {{ PYTHON }} -m pip install . -vv

requirements:
host:
- pip
- python
run:
- python
- click
- jinja2
- terminaltables

test:
requires:
- click
- jinja2
- terminaltables
imports:
- envs
commands:
- envs --help

about:
home: https://github.com/bjinwright/envs
license: Apache-2.0
license_family: Apache
license_file: LICENSE
summary: Easy access of environment variables from Python with support for strings, booleans, list, tuples, and dicts.
dev_url: https://github.com/bjinwright/envs

extra:
recipe-maintainers:
- benhuff
- oblute
- rluria14
48 changes: 48 additions & 0 deletions recipes/warrant-lite/meta.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
{% set name = "warrant-lite" %}
{% set version = "1.0.4" %}

package:
name: {{ name|lower }}
version: {{ version }}

source:
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz
sha256: 16e9d6a2c9599f7a345877addbe2ed8203b76db6ded942cc5d6f77ab4ec6c49e

build:
number: 0
noarch: python
script: {{ PYTHON }} -m pip install . -vv

requirements:
host:
- python >=3.6
- pip <19
run:
- python >=3.6
- boto3
- envs
- python-jose
- requests

test:
imports:
- warrant_lite

about:
home: https://github.com/capless/warrant-lite
license: Apache-2.0
license_family: Apache
license_file: LICENSE
summary: |
Small Python library for process SRP requests for AWS Cognito. This library was
initially included in the [Warrant](https://www.github.com/capless/warrant) library.
We decided to separate it because not all projects and workfows need all of the
helper classes and functions in Warrant.
dev_url: https://github.com/capless/warrant-lite

extra:
recipe-maintainers:
- benhuff
- rluria14
- oblute