pymacaroons-0.13.0.ebuild (705B)
1 # Copyright 2019-2021 Gentoo Authors 2 # Distributed under the terms of the GNU General Public License v2 3 4 EAPI=8 5 6 PYTHON_COMPAT=( python3_{5..10} ) 7 inherit distutils-r1 8 9 DESCRIPTION="PyMacaroons is a Python implementation of Macaroons" 10 HOMEPAGE="https://github.com/ecordell/pymacaroons https://pypi.python.org/pypi/pymacaroons-pynacl" 11 SRC_URI="https://github.com/ecordell/pymacaroons/archive/v${PV}.tar.gz -> ${P}.tar.gz" 12 13 LICENSE="MIT" 14 SLOT="0" 15 KEYWORDS="~amd64" 16 IUSE="" 17 18 #S="${WORKDIR}/${PN%-pynacl}-${PV}" 19 20 # TODO testing useflag and additional dependencies 21 # See: https://github.com/matrix-org/pymacaroons/blob/master/requirements.txt 22 23 DEPEND="" 24 RDEPEND="${DEPEND} 25 dev-python/six 26 dev-python/pynacl 27 "