mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-29 12:31:35 +01:00
51 lines
1.3 KiB
Plaintext
51 lines
1.3 KiB
Plaintext
# Contributor: Kevin Daudt <kdaudt@alpinelinux.org>
|
|
# Maintainer: Kevin Daudt <kdaudt@alpinelinux.org>
|
|
pkgname=ipython
|
|
pkgver=7.11.1
|
|
pkgrel=0
|
|
pkgdesc="A rich toolkit to help you make the most of using Python interactively"
|
|
options="!check" # Too many tests fail
|
|
url="https://ipython.org/"
|
|
arch="noarch"
|
|
license="BSD-3-Clause"
|
|
depends="
|
|
py3-traitlets
|
|
py3-pexpect
|
|
py3-prompt_toolkit<2.1.0
|
|
py3-pygments
|
|
py3-pickleshare
|
|
py3-decorator
|
|
py3-backcall
|
|
py3-simplegeneric
|
|
py3-setuptools
|
|
"
|
|
checkdepends="py3-pathlib2"
|
|
checkdepends="py3-pytest py3-nose py3-matplotlib"
|
|
subpackages="$pkgname-doc"
|
|
source="$pkgname-$pkgver.tar.gz::https://github.com/ipython/ipython/archive/$pkgver.tar.gz"
|
|
builddir="$srcdir/$pkgname-$pkgver/"
|
|
|
|
build() {
|
|
python3 setup.py build
|
|
}
|
|
|
|
check() {
|
|
# Requires unpackaged 'testpath'
|
|
rm -f IPython/core/tests/test_paths.py
|
|
|
|
rm -f IPython/core/tests/test_completer.py
|
|
|
|
# Requires unpackaged 'nbformat'
|
|
rm -f IPython/core/tests/test_run.py
|
|
|
|
py.test-3 \
|
|
--deselect=IPython/terminal/tests/test_help.py::test_trust_help \
|
|
--deselect=IPython/core/tests/test_display.py::test_set_matplotlib_formats_kwargs
|
|
}
|
|
|
|
package() {
|
|
python3 setup.py install --prefix=/usr --root="$pkgdir"
|
|
}
|
|
|
|
sha512sums="a4cf70fd8b7eadcf445986aff8084acf2048b5361f8c40b7104a483a9397eca7902ac14ae196bbaa81d56c30268fdd5cb750773d68668849cfef9c2af2965243 ipython-7.11.1.tar.gz"
|