{ lib , buildPythonPackage, fetchPypi , numpy, requests, six, pyglet, scipy }: buildPythonPackage rec { pname = "gym"; version = "0.12.0"; src = fetchPypi { inherit pname version; sha256 = "0ggac8a8qk06wplwg5xsisn9id3lis9qslri7m9rz22khlyl7z4j"; }; 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 ]; }; }