# Copyright 2019-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 PYTHON_COMPAT=( python3_{7,8} pypy3 ) inherit distutils-r1 DESCRIPTION="Simplified packaging of Python modules" HOMEPAGE="https://github.com/takluyver/flit https://flit.readthedocs.io/" SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" LICENSE="BSD" SLOT="0" KEYWORDS="~amd64 ~x86" IUSE="test" RDEPEND=" setup.py || die # use toml instead of depricated pytoml grep -r -l -Z -F 'pytoml' | xargs -0 \ sed -e 's:import pytoml as toml:import toml:' \ -e 's:pytoml:toml:' -i || die distutils-r1_python_prepare_all }