mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-12-25 11:22:30 +01:00
44 lines
1.0 KiB
Plaintext
44 lines
1.0 KiB
Plaintext
# Contributor: Kevin Daudt <kdaudt@alpinelinux.org>
|
|
# Maintainer: Kevin Daudt <kdaudt@alpinelinux.org>
|
|
pkgname=ipython
|
|
pkgver=7.1.0
|
|
pkgrel=0
|
|
pkgdesc="A rich toolkit to help you make the most of using Python interactively"
|
|
url="https://ipython.org/"
|
|
arch="noarch"
|
|
license="BSD-3-Clause"
|
|
depends="
|
|
py3-traitlets
|
|
py3-pexpect
|
|
py3-prompt_toolkit>2.0.0
|
|
py3-jedi
|
|
py3-pygments
|
|
py3-pickleshare
|
|
py3-decorator
|
|
py3-backcall
|
|
py3-simplegeneric
|
|
py3-setuptools
|
|
"
|
|
checkdepends="py-pathlib2"
|
|
makedepends="python3-dev py-setuptools"
|
|
subpackages="$pkgname-doc"
|
|
source="$pkgname-$pkgver.tar.gz::https://github.com/ipython/ipython/archive/$pkgver.tar.gz"
|
|
builddir="$srcdir/$pkgname-$pkgver/"
|
|
|
|
build() {
|
|
cd "$builddir"
|
|
python3 setup.py build
|
|
}
|
|
|
|
check() {
|
|
cd "$builddir"
|
|
python3 setup.py check
|
|
}
|
|
|
|
package() {
|
|
cd "$builddir"
|
|
python3 setup.py install --prefix=/usr --root="$pkgdir"
|
|
}
|
|
|
|
sha512sums="f31da8651bbb3507e95b61d7bec38d5be0ca93582b9e0cf0129313a862588993e250aedb30674e2763a6ecc998607d1b1e58aa84710f597a8cca9cbc66feffff ipython-7.1.0.tar.gz"
|