pkgsrc/devel/py-ipykernel/Makefile
adam 4a93293af5 py-ipykernel: updated to 5.1.0
5.1.0
- Fix message-ordering bug that could result in out-of-order executions,
  especially on Windows
- Fix classifiers to indicate dropped Python 2 support
- Remove some dead code
- Support rich-media responses in inspect_requests (tooltips)

5.0.0
- Drop support for Python 2. ipykernel 5.0 requires Python >= 3.4
- Add support for IPython's asynchronous code execution
- Update release process in CONTRIBUTING.md
2018-11-29 18:24:36 +00:00

35 lines
1.1 KiB
Makefile

# $NetBSD: Makefile,v 1.9 2018/11/29 18:24:36 adam Exp $
DISTNAME= ipykernel-5.1.0
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
CATEGORIES= devel python
MASTER_SITES= ${MASTER_SITE_PYPI:=i/ipykernel/}
MAINTAINER= pkgsrc-users@NetBSD.org
HOMEPAGE= http://ipython.org/
COMMENT= IPython Kernel for Jupyter
LICENSE= modified-bsd
DEPENDS+= ${PYPKGPREFIX}-ipython>=5.0.0:../../devel/py-ipython
DEPENDS+= ${PYPKGPREFIX}-jupyter_client-[0-9]*:../../devel/py-jupyter_client
DEPENDS+= ${PYPKGPREFIX}-tornado>=4.2:../../www/py-tornado
DEPENDS+= ${PYPKGPREFIX}-traitlets>=4.1.0:../../devel/py-traitlets
TEST_DEPENDS+= ${PYPKGPREFIX}-nose-[0-9]*:../../devel/py-nose
TEST_DEPENDS+= ${PYPKGPREFIX}-test-[0-9]*:../../devel/py-test
TEST_DEPENDS+= ${PYPKGPREFIX}-test-cov-[0-9]*:../../devel/py-test-cov
USE_LANGUAGES= # none
PYTHON_VERSIONS_INCOMPATIBLE= 27
.include "../../lang/python/pyversion.mk"
PLIST_VARS+= async
.if ${_PYTHON_VERSION} != 34
PLIST.async= yes
.endif
do-test:
cd ${WRKSRC} && py.test-${PYVERSSUFFIX}
.include "../../lang/python/egg.mk"
.include "../../mk/bsd.pkg.mk"