Skip to content

Commit

Permalink
Merge pull request #1565 from pmlandwehr/flask-socketio
Browse files Browse the repository at this point in the history
Added recipe for Flask-SocketIO
  • Loading branch information
jakirkham authored Sep 21, 2016
2 parents 7ea25eb + ced89d0 commit b280265
Showing 1 changed file with 51 additions and 0 deletions.
51 changes: 51 additions & 0 deletions recipes/flask-socketio/meta.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
{%set name = "Flask-SocketIO" %}
{%set version = "2.7.1" %}
{%set compress_type = "tar.gz" %}
{%set hash_type = "sha256" %}
{%set hash_val = "93407798fddd7258fdd1fc7f4c50251d2f7cbcc820194312920dac62748d0e65" %}
{%set build_num = "0" %}

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

source:
fn: {{ name }}-{{ version }}.{{ compress_type }}
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.{{ compress_type }}
{{ hash_type }}: {{ hash_val }}

build:
preserve_egg_dir: True
number: {{ build_num }}
script: python setup.py install --single-version-externally-managed --record=record.txt

requirements:
build:
- python
- setuptools

run:
- python
- flask >=0.9
- python-socketio >=1.5.0
- python-engineio >=1.0.0

test:
imports:
- flask_socketio
- flask_socketio.cli
- flask_socketio.namespace
- flask_socketio.test_client

about:
home: http://github.com/miguelgrinberg/Flask-SocketIO/
license: MIT
# license_file: No MANIFEST.in - see https://github.com/miguelgrinberg/Flask-SocketIO/issues/326
license_family: MIT
summary: 'Socket.IO integration for Flask applications'
doc_url: https://flask-socketio.readthedocs.io/en/latest/
dev_url: http://github.com/miguelgrinberg/Flask-SocketIO

extra:
recipe-maintainers:
- pmlandwehr

0 comments on commit b280265

Please sign in to comment.