linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / gym / default.nix
blob263bdfa2f47846f832c3eb21dbcf3b58a5a1e11a
1 { lib
2 , buildPythonPackage, fetchPypi
3 , numpy, requests, six, pyglet, scipy, cloudpickle
4 }:
6 buildPythonPackage rec {
7   pname = "gym";
8   version = "0.17.3";
10   src = fetchPypi {
11     inherit pname version;
12     sha256 = "96a7dd4e9cdb39e30c7a79e5773570fd9408f7fdb58c714c293cfbb314818eb6";
13   };
15   propagatedBuildInputs = [
16     numpy requests six pyglet scipy cloudpickle
17   ];
19   # The test needs MuJoCo that is not free library.
20   doCheck = false;
22   pythonImportsCheck = [ "gym" ];
24   meta = with lib; {
25     description = "A toolkit by OpenAI for developing and comparing your reinforcement learning agents";
26     homepage = "https://gym.openai.com/";
27     license = licenses.mit;
28     maintainers = with maintainers; [ hyphon81 ];
29   };