summary refs log tree commit diff
path: root/pkgs/development/python-modules/gym/default.nix
blob: 1bda1d8ac2d20983a996a750bb57e0177ff0358c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{ lib
, buildPythonPackage
, fetchFromGitHub
, numpy
, requests
, pyglet
, scipy
, pillow
, cloudpickle
}:

buildPythonPackage rec {
  pname = "gym";
  version = "0.18.3";

  src = fetchFromGitHub {
    owner = "openai";
    repo = pname;
    rev = version;
    sha256 = "sha256-10KHUG6WacYzqna97vEhSQWDmJDvDmD5QxLhPW5NQSs=";
  };

  propagatedBuildInputs = [
    cloudpickle
    numpy
    pillow
    pyglet
    requests
    scipy
  ];

  postPatch = ''
    substituteInPlace setup.py \
      --replace "Pillow<=8.2.0" "Pillow"
  '';

  # The test needs MuJoCo that is not free library.
  doCheck = false;

  pythonImportsCheck = [ "gym" ];

  meta = with lib; {
    description = "A toolkit for developing and comparing your reinforcement learning agents";
    homepage = "https://gym.openai.com/";
    license = licenses.mit;
    maintainers = with maintainers; [ hyphon81 ];
  };
}