python3Packages.gym: 0.18.0 -> 0.18.1

This commit is contained in:
Fabian Affolter 2021-04-29 11:12:52 +02:00
parent 0fe6b1ccde
commit 76326594f1

View file

@ -1,19 +1,32 @@
{ lib { lib
, buildPythonPackage, fetchPypi , buildPythonPackage
, numpy, requests, six, pyglet, scipy, cloudpickle , fetchFromGitHub
, numpy
, requests
, pyglet
, scipy
, pillow
, cloudpickle
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "gym"; pname = "gym";
version = "0.18.0"; version = "0.18.1";
src = fetchPypi { src = fetchFromGitHub {
inherit pname version; owner = "openai";
sha256 = "a0dcd25c1373f3938f4cb4565f74f434fba6faefb73a42d09c9dddd0c08af53e"; repo = pname;
rev = version;
sha256 = "0mv4af2y9d1y97bsda94f21nis2jm1zkzv7c806vmvzh5s4r8nfn";
}; };
propagatedBuildInputs = [ propagatedBuildInputs = [
numpy requests six pyglet scipy cloudpickle cloudpickle
numpy
pillow
pyglet
requests
scipy
]; ];
# The test needs MuJoCo that is not free library. # The test needs MuJoCo that is not free library.
@ -22,7 +35,7 @@ buildPythonPackage rec {
pythonImportsCheck = [ "gym" ]; pythonImportsCheck = [ "gym" ];
meta = with lib; { meta = with lib; {
description = "A toolkit by OpenAI for developing and comparing your reinforcement learning agents"; description = "A toolkit for developing and comparing your reinforcement learning agents";
homepage = "https://gym.openai.com/"; homepage = "https://gym.openai.com/";
license = licenses.mit; license = licenses.mit;
maintainers = with maintainers; [ hyphon81 ]; maintainers = with maintainers; [ hyphon81 ];