2017-05-08 18:49:29 +02:00
|
|
|
# -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:ft=tcl:et:sw=4:ts=4:sts=4
|
|
|
|
|
|
|
|
|
|
PortSystem 1.0
|
|
|
|
|
PortGroup python 1.0
|
|
|
|
|
|
2018-12-07 00:00:52 -05:00
|
|
|
name py-ipython-sql
|
2018-09-24 21:15:45 +02:00
|
|
|
version 0.3.9
|
2019-11-16 13:17:56 -05:00
|
|
|
revision 0
|
|
|
|
|
|
2017-05-08 18:49:29 +02:00
|
|
|
categories-append databases
|
|
|
|
|
platforms darwin
|
|
|
|
|
supported_archs noarch
|
|
|
|
|
license MIT
|
2018-05-07 06:45:24 -05:00
|
|
|
maintainers {petr @petrrr} openmaintainer
|
2017-05-08 18:49:29 +02:00
|
|
|
|
|
|
|
|
description RDBMS access via %%sql magic for IPython
|
|
|
|
|
long_description \
|
|
|
|
|
Introduces a %sql (or %%sql) magic. \
|
|
|
|
|
Connect to a database, using SQLAlchemy connect strings, then issue SQL \
|
|
|
|
|
commands within IPython or IPython Notebook.
|
|
|
|
|
|
|
|
|
|
homepage https://github.com/catherinedevlin/ipython-sql
|
2018-12-07 00:00:52 -05:00
|
|
|
distname ${python.rootname}-${version}
|
|
|
|
|
master_sites pypi:[string index ${python.rootname} 0]/${python.rootname}/
|
2017-05-08 18:49:29 +02:00
|
|
|
|
2018-09-24 21:15:45 +02:00
|
|
|
checksums rmd160 350da7130942b86415eebf899552edd57379ca07 \
|
|
|
|
|
sha256 7187f6371f38b89d8fb63c2c7c4233d9000fb53b460dae79e4a359df366cc3ed \
|
|
|
|
|
size 18028
|
2017-05-08 18:49:29 +02:00
|
|
|
|
2019-11-25 19:23:10 +01:00
|
|
|
python.versions 27 35 36 37 38
|
2017-05-08 18:49:29 +02:00
|
|
|
|
|
|
|
|
if {${name} ne ${subport}} {
|
2018-12-07 00:00:52 -05:00
|
|
|
# upstream fix for Python 2 compatibility issue reported in
|
|
|
|
|
# https://trac.macports.org/ticket/57559
|
|
|
|
|
patchfiles-append patch-setup.py.diff
|
|
|
|
|
|
2017-05-08 18:49:29 +02:00
|
|
|
depends_build-append port:py${python.version}-setuptools
|
|
|
|
|
|
|
|
|
|
depends_lib-append port:py${python.version}-ipython \
|
|
|
|
|
port:py${python.version}-ipython_genutils \
|
|
|
|
|
port:py${python.version}-prettytable \
|
|
|
|
|
port:py${python.version}-sqlalchemy \
|
|
|
|
|
port:py${python.version}-sqlparse \
|
|
|
|
|
port:py${python.version}-six
|
|
|
|
|
|
|
|
|
|
livecheck.type none
|
|
|
|
|
}
|