mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-24 11:45:18 +03:00
47 lines
974 B
Text
47 lines
974 B
Text
# Contributor: Bart Ribbers <bribbers@disroot.org>
|
|
# Maintainer: Bart Ribbers <bribbers@disroot.org>
|
|
pkgname=py3-pymeeus
|
|
pkgver=0.5.12
|
|
pkgrel=0
|
|
pkgdesc="Python implementation of Jean Meeus astronomical routines"
|
|
url="https://github.com/architest/pymeeus"
|
|
arch="noarch"
|
|
license="LGPL-3.0-or-later"
|
|
depends="
|
|
py3-atomicwrites
|
|
py3-attrs
|
|
py3-funcsigs
|
|
py3-more-itertools
|
|
py3-pathlib2
|
|
py3-pluggy
|
|
py3-py
|
|
python3
|
|
"
|
|
makedepends="py3-setuptools"
|
|
checkdepends="
|
|
py3-coverage
|
|
py3-flake8
|
|
py3-mccabe
|
|
py3-pycodestyle
|
|
py3-pyflakes
|
|
py3-pytest
|
|
py3-pytest-cov
|
|
"
|
|
source="https://pypi.python.org/packages/source/P/PyMeeus/PyMeeus-$pkgver.tar.gz"
|
|
builddir="$srcdir/PyMeeus-$pkgver"
|
|
|
|
build() {
|
|
python3 setup.py build
|
|
}
|
|
|
|
check() {
|
|
pytest
|
|
}
|
|
|
|
package() {
|
|
python3 setup.py install --skip-build --root="$pkgdir"
|
|
}
|
|
|
|
sha512sums="
|
|
33f68f352cb6737aeec9782727c5ded921cf6f5561cfd7ecb237f7cf4b431e1010f7dff49d779ea368c8298a3012da84f6fa3afc7efc08579b798bb17558c423 PyMeeus-0.5.12.tar.gz
|
|
"
|