mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-22 00:52:18 +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.3.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="825a466763ad3c57f7e8dbc15f66735e5bd686c77f3b5f8d147baea51a703849ad8c070136e06b3472de3f402bb99300e6ad8d62c1f94c361a6838ba4ae9e42a ipython-7.3.0.tar.gz"
|