pythonPackages.gym: init at 0.9.6
Fix the description and add the comment
This commit is contained in:
parent
eb6337b3e3
commit
3d4f4149b5
28
pkgs/development/python-modules/gym/default.nix
Normal file
28
pkgs/development/python-modules/gym/default.nix
Normal file
@ -0,0 +1,28 @@
|
|||||||
|
{ lib
|
||||||
|
, buildPythonPackage, fetchPypi
|
||||||
|
, numpy, requests, six, pyglet, scipy
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "gym";
|
||||||
|
version = "0.9.6";
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "0llbhn3zdlsz2crd5grd1yygg8zp2shsclc24iqix5gw5f65clx5";
|
||||||
|
};
|
||||||
|
|
||||||
|
propagatedBuildInputs = [
|
||||||
|
numpy requests six pyglet scipy
|
||||||
|
];
|
||||||
|
|
||||||
|
# The test needs MuJoCo that is not free library.
|
||||||
|
doCheck = false;
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "A toolkit by OpenAI for developing and comparing your reinforcement learning agents.";
|
||||||
|
homepage = https://gym.openai.com/;
|
||||||
|
license = licenses.mit;
|
||||||
|
maintainers = with maintainers; [ hyphon81 ];
|
||||||
|
};
|
||||||
|
}
|
@ -2448,6 +2448,8 @@ in {
|
|||||||
|
|
||||||
gspread = callPackage ../development/python-modules/gspread { };
|
gspread = callPackage ../development/python-modules/gspread { };
|
||||||
|
|
||||||
|
gym = callPackage ../development/python-modules/gym { };
|
||||||
|
|
||||||
gyp = callPackage ../development/python-modules/gyp { };
|
gyp = callPackage ../development/python-modules/gyp { };
|
||||||
|
|
||||||
guessit = callPackage ../development/python-modules/guessit { };
|
guessit = callPackage ../development/python-modules/guessit { };
|
||||||
|
Loading…
Reference in New Issue
Block a user