Skip to content

Commit a64c6a3

Browse files
committedAug 17, 2015
conda: add aiohttp dependency on artiq pkg + recipe for aiohttp pkg
1 parent 324cafa commit a64c6a3

File tree

4 files changed

+42
-0
lines changed

4 files changed

+42
-0
lines changed
 

Diff for: ‎conda/aiohttp/bld.bat

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
"%PYTHON%" setup.py install
2+
if errorlevel 1 exit 1

Diff for: ‎conda/aiohttp/build.sh

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
#!/bin/bash
2+
3+
$PYTHON setup.py install

Diff for: ‎conda/aiohttp/meta.yaml

+36
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
package:
2+
name: aiohttp
3+
version: "0.17.2"
4+
5+
source:
6+
fn: aiohttp-0.17.2.tar.gz
7+
url: https://pypi.python.org/packages/source/a/aiohttp/aiohttp-0.17.2.tar.gz
8+
md5: 7640928fd4b5c1ccf1f8bcad276d39d6
9+
10+
build:
11+
number: 0
12+
13+
requirements:
14+
build:
15+
- python
16+
- setuptools
17+
- chardet
18+
19+
run:
20+
- python
21+
- chardet
22+
23+
test:
24+
# Python imports
25+
imports:
26+
- aiohttp
27+
28+
requires:
29+
- chardet
30+
- gunicorn
31+
- nose
32+
33+
about:
34+
home: https://github.com/KeepSafe/aiohttp/
35+
license: Apache Software License
36+
summary: 'http client/server for asyncio'

Diff for: ‎conda/artiq/meta.yaml

+1
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@ requirements:
4949
- pyqtgraph
5050
- flterm # [linux]
5151
- pygit2
52+
- aiohttp
5253

5354
test:
5455
imports:

0 commit comments

Comments
 (0)
Please sign in to comment.