forked from mirrors/nixpkgs
python3Packages.gym: fix dependency constraints
This commit is contained in:
parent
a4d05ec30c
commit
c097e85a2f
|
@ -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/";
|
||||
|
|
Loading…
Reference in a new issue