nixpkgs/pkgs/development/python-modules/gym/default.nix

29 lines
672 B
Nix
Raw Normal View History

{ lib
, buildPythonPackage, fetchPypi
, numpy, requests, six, pyglet, scipy
}:
buildPythonPackage rec {
pname = "gym";
2019-04-16 18:15:36 +01:00
version = "0.12.1";
src = fetchPypi {
inherit pname version;
2019-04-16 18:15:36 +01:00
sha256 = "f8bee3672759aeec4271169dcbb2afc069b898c7f92882d965c59be8085f2b35";
};
propagatedBuildInputs = [
numpy requests six pyglet scipy
];
# The test needs MuJoCo that is not free library.
doCheck = false;
meta = with lib; {
2018-12-15 01:02:15 +00:00
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 ];
};
}