3
0
Fork 0
forked from mirrors/nixpkgs

python3Packages.gym: fix dependency constraints

This commit is contained in:
William Kral 2020-09-23 13:37:37 -07:00
parent a4d05ec30c
commit c097e85a2f

View file

@ -14,8 +14,10 @@ buildPythonPackage rec {
postPatch = ''
substituteInPlace setup.py \
--replace "pyglet>=1.2.0,<=1.3.2" "pyglet"
--replace "pyglet>=1.2.0,<=1.3.2" "pyglet" \
--replace "cloudpickle>=1.2.0,<1.4.0" "cloudpickle~=1.2"
'';
# cloudpickle range has been expanded in package but not yet released
propagatedBuildInputs = [
numpy requests six pyglet scipy cloudpickle
@ -24,6 +26,8 @@ buildPythonPackage rec {
# The test needs MuJoCo that is not free library.
doCheck = false;
pythonImportCheck = [ "gym" ];
meta = with lib; {
description = "A toolkit by OpenAI for developing and comparing your reinforcement learning agents";
homepage = "https://gym.openai.com/";