mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-08-10 02:08:08 -07:00
dev-python/joblib: keyword 1.3.2 for ~arm64-macos, ~x64-macos dev-python/threadpoolctl: keyword 3.2.0 for ~arm64-macos, ~x64-macos dev-python/cloudpickle: keyword 2.2.1 for ~arm64-macos, ~x64-macos dev-python/loky: keyword 3.4.1 for ~arm64-macos, ~x64-macos dev-python/psutil: keyword 5.9.5 for ~arm64-macos Suggested-by: Hanyi Li <lihanyi21@mails.tsinghua.edu.cn> Signed-off-by: Benda Xu <heroxbd@gentoo.org>
36 lines
833 B
Bash
36 lines
833 B
Bash
# Copyright 1999-2023 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
DISTUTILS_USE_PEP517=setuptools
|
|
PYTHON_COMPAT=( python3_{9..11} )
|
|
|
|
inherit distutils-r1 pypi
|
|
|
|
DESCRIPTION="Extended pickling support for Python objects"
|
|
HOMEPAGE="
|
|
https://github.com/cloudpipe/cloudpickle/
|
|
https://pypi.org/project/cloudpickle/
|
|
"
|
|
|
|
LICENSE="BSD"
|
|
SLOT="0"
|
|
KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~arm64-macos ~x64-macos"
|
|
|
|
BDEPEND="
|
|
test? (
|
|
dev-python/mock[${PYTHON_USEDEP}]
|
|
dev-python/psutil[${PYTHON_USEDEP}]
|
|
)
|
|
"
|
|
|
|
distutils_enable_tests pytest
|
|
|
|
python_test() {
|
|
local -x PYTHONPATH=${PYTHONPATH}:tests/cloudpickle_testpkg
|
|
# -s unbreaks some tests
|
|
# https://github.com/cloudpipe/cloudpickle/issues/252
|
|
epytest -s
|
|
}
|