aboutsummaryrefslogtreecommitdiffstats
path: root/community/ipython/APKBUILD
blob: fa7d0e5296899b096c52b2a14620fac0be07b5ba (plain)
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
48
49
50
# Contributor: Kevin Daudt <kdaudt@alpinelinux.org>
# Maintainer: Kevin Daudt <kdaudt@alpinelinux.org>
pkgname=ipython
pkgver=7.23.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<3.1.0
	py3-pygments
	py3-pickleshare
	py3-decorator
	py3-backcall
	py3-simplegeneric
	py3-setuptools
	"
checkdepends="py3-pathlib2 py3-pytest py3-nose py3-matplotlib"
subpackages="$pkgname-doc"
source="$pkgname-$pkgver.tar.gz::https://github.com/ipython/ipython/archive/$pkgver.tar.gz"

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="
aea956e1a3335906457b85e6ee16bffe9e2f9791bc19df022f1583d1ccadce216c116aea11fde1d709ab6829459ba35348b9cf2b7ebd6582db028e78350b570b  ipython-7.23.1.tar.gz
"