-
-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathmeta.yaml
43 lines (36 loc) · 948 Bytes
/
meta.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
{% set version = "1.7.1" %}
package:
name: pysocks
version: {{ version }}
source:
url: https://pypi.io/packages/source/P/PySocks/PySocks-{{ version }}.tar.gz
sha256: 3f8804571ebe159c380ac6de37643bb4685970655d3bba243530d6558b799aa0
build:
number: 6
script: "{{ PYTHON }} -m pip install . --no-deps -vv"
noarch: python
requirements:
host:
- python >=3.8
- pip
run:
- python >=3.8
- {{ virtual_pkg|default("__unix") }}
{% if virtual_pkg == "__win" %}
- win_inet_pton
{% endif %}
test:
imports:
- socks
about:
home: https://github.com/Anorov/PySocks
license_file: LICENSE
license: BSD-3-Clause
summary: 'A Python SOCKS client module. See https://github.com/Anorov/PySocks for more information.'
license_family: BSD
doc_url: https://github.com/Anorov/PySocks/blob/master/README.md
dev_url: https://github.com/Anorov/PySocks
extra:
recipe-maintainers:
- pmlandwehr
- ocefpaf