-
Notifications
You must be signed in to change notification settings - Fork 4
/
meta.yaml
47 lines (40 loc) · 1.16 KB
/
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
44
45
46
47
{% set name = "servicestack" %}
{% set version = "0.0.8" %}
package:
name: "{{ name|lower }}"
version: "{{ version }}"
source:
url: "https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz"
sha256: 4874987b82e81a8eeb146b53df6b282f48f843aa1e4f17eecc24d723dc3c5247
build:
noarch: python
number: 0
script: "{{ PYTHON }} -m pip install . -vv"
requirements:
host:
- pip
- python >=3.9
run:
- dataclasses >=0.6
- dataclasses-json >=0.5.4
- marshmallow >=3.12.2
- python >=3.9
- requests >=2.25.1
test:
requires:
- pytest
commands:
- "${PREFIX}/bin/python3 -m unittest tests.test_serialization.TestSerialization" # [linux and osx]
- "%PREFIX%\\bin\\python3 -m unittest tests.test_serialization.TestSerialization" # [win]
about:
home: "https://github.com/ServiceStack/servicestack-python"
license: BSD-3-Clause
license_family: BSD
license_file: LICENSE
summary: "ServiceStack Python Service Clients"
doc_url: "https://github.com/ServiceStack/servicestack-python"
dev_url: "https://github.com/ServiceStack/servicestack-python"
extra:
recipe-maintainers:
- mythz
- Layoric