diff options
author | Joseph Hunkeler <jhunkeler@users.noreply.github.com> | 2017-08-08 14:24:47 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-08-08 14:24:47 -0400 |
commit | e349021b1eff5167f8673147a58a7aaa2181f3ca (patch) | |
tree | ad3599a404f3d0084c4a927380b1864a6923e10a /pymssql/meta.yaml | |
parent | 20ecff4663d3fa54bf52960a33383fb8bce8dde6 (diff) | |
download | astroconda-dev-e349021b1eff5167f8673147a58a7aaa2181f3ca.tar.gz |
Initial commit of pymssql (#48)
Diffstat (limited to 'pymssql/meta.yaml')
-rw-r--r-- | pymssql/meta.yaml | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/pymssql/meta.yaml b/pymssql/meta.yaml new file mode 100644 index 0000000..f504d56 --- /dev/null +++ b/pymssql/meta.yaml @@ -0,0 +1,50 @@ +{% set name = 'pymssql' %} +{% set version = '2.1.3' %} +{% set tag = 'v' + version %} +{% set number = '0' %} + +# Original recipe can be found here: +# https://github.com/conda/conda-recipes + +about: + home: http://pymssql.org + license: GNU Library or Lesser General Public License (LGPL) + summary: 'DB-API interface to Microsoft SQL Server for Python. (new Cython-based version)' + license_family: LGPL + doc_url: http://www.pymssql.org/en/stable/ + dev_url: https://github.com/pymssql/pymssql + +package: + name: {{ name }} + version: {{ version }} + +build: + number: {{ number }} + +requirements: + build: + - openssl 1.0.* # [win] + - python + - cython + - setuptools + - libiconv # [win] + - freetds >=1.00.9 + + run: + - python + - freetds >=1.00.9 + +source: + git_tag: {{ tag }} + git_url: https://github.com/{{ name }}/{{ name }}.git + + patches: + - 0001-Drop-usage-of-DBVERSION_80-symbol-d90c9b.patch + - 0002-Change-setup_requires-setuptools_git-to-setuptools.patch + - 0003-Use-libsybdb-not-db-lib-since-I-renamed-it.patch + - 0004-Win32-link-to-openssl.patch + + +test: + imports: + - pymssql |