mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-08-02 05:33:57 -09:00
Add support for the python-cloudpickle package, which provides a Pickler class that extends the standard pickle.Pickler functionality. This package is required as a dependency for gymnasium and other machine learning or scientific computing libraries that require advanced object serialization. Signed-off-by: Xukai Wang <kingxukai@zohomail.com> Signed-off-by: Julien Olivain <ju.o@free.fr>
15 lines
582 B
Makefile
15 lines
582 B
Makefile
################################################################################
|
|
#
|
|
# python-cloudpickle
|
|
#
|
|
################################################################################
|
|
|
|
PYTHON_CLOUDPICKLE_VERSION = 3.1.2
|
|
PYTHON_CLOUDPICKLE_SOURCE = cloudpickle-$(PYTHON_CLOUDPICKLE_VERSION).tar.gz
|
|
PYTHON_CLOUDPICKLE_SITE = https://files.pythonhosted.org/packages/27/fb/576f067976d320f5f0114a8d9fa1215425441bb35627b1993e5afd8111e5
|
|
PYTHON_CLOUDPICKLE_SETUP_TYPE = flit
|
|
PYTHON_CLOUDPICKLE_LICENSE = BSD-3-Clause
|
|
PYTHON_CLOUDPICKLE_LICENSE_FILES = LICENSE
|
|
|
|
$(eval $(python-package))
|