2018-11-11 04:09:19 +00:00
|
|
|
{ lib
|
2021-04-29 09:12:52 +00:00
|
|
|
, buildPythonPackage
|
|
|
|
, fetchFromGitHub
|
|
|
|
, numpy
|
|
|
|
, requests
|
|
|
|
, pyglet
|
|
|
|
, scipy
|
|
|
|
, pillow
|
|
|
|
, cloudpickle
|
2018-11-11 04:09:19 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "gym";
|
2021-07-09 20:16:49 +00:00
|
|
|
version = "0.18.3";
|
2018-11-11 04:09:19 +00:00
|
|
|
|
2021-04-29 09:12:52 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "openai";
|
|
|
|
repo = pname;
|
|
|
|
rev = version;
|
2021-07-09 20:16:49 +00:00
|
|
|
sha256 = "sha256-10KHUG6WacYzqna97vEhSQWDmJDvDmD5QxLhPW5NQSs=";
|
2018-11-11 04:09:19 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = [
|
2021-04-29 09:12:52 +00:00
|
|
|
cloudpickle
|
|
|
|
numpy
|
|
|
|
pillow
|
|
|
|
pyglet
|
|
|
|
requests
|
|
|
|
scipy
|
2018-11-11 04:09:19 +00:00
|
|
|
];
|
|
|
|
|
2021-07-23 06:02:40 +00:00
|
|
|
postPatch = ''
|
|
|
|
substituteInPlace setup.py \
|
|
|
|
--replace "Pillow<=8.2.0" "Pillow"
|
|
|
|
'';
|
|
|
|
|
2018-11-11 04:09:19 +00:00
|
|
|
# The test needs MuJoCo that is not free library.
|
|
|
|
doCheck = false;
|
|
|
|
|
2020-11-04 01:59:35 +00:00
|
|
|
pythonImportsCheck = [ "gym" ];
|
2020-09-23 20:37:37 +00:00
|
|
|
|
2018-11-11 04:09:19 +00:00
|
|
|
meta = with lib; {
|
2021-04-29 09:12:52 +00:00
|
|
|
description = "A toolkit for developing and comparing your reinforcement learning agents";
|
2020-03-03 03:24:58 +00:00
|
|
|
homepage = "https://gym.openai.com/";
|
2018-11-11 04:09:19 +00:00
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ hyphon81 ];
|
|
|
|
};
|
|
|
|
}
|