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

38 lines
977 B
Nix
Raw Normal View History

{ lib
, buildPythonPackage, fetchPypi
2019-10-27 01:14:36 +01:00
, numpy, requests, six, pyglet, scipy, cloudpickle
}:
buildPythonPackage rec {
pname = "gym";
2020-10-25 09:06:52 +00:00
version = "0.17.3";
src = fetchPypi {
inherit pname version;
2020-10-25 09:06:52 +00:00
sha256 = "96a7dd4e9cdb39e30c7a79e5773570fd9408f7fdb58c714c293cfbb314818eb6";
};
2019-10-27 01:14:36 +01:00
postPatch = ''
substituteInPlace setup.py \
--replace "pyglet>=1.2.0,<=1.3.2" "pyglet" \
--replace "cloudpickle>=1.2.0,<1.4.0" "cloudpickle~=1.2"
2019-10-27 01:14:36 +01:00
'';
# cloudpickle range has been expanded in package but not yet released
2019-10-27 01:14:36 +01:00
propagatedBuildInputs = [
2019-10-27 01:14:36 +01:00
numpy requests six pyglet scipy cloudpickle
];
# The test needs MuJoCo that is not free library.
doCheck = false;
pythonImportsCheck = [ "gym" ];
meta = with lib; {
2018-12-15 01:02:15 +00:00
description = "A toolkit by OpenAI for developing and comparing your reinforcement learning agents";
2020-03-03 03:24:58 +00:00
homepage = "https://gym.openai.com/";
license = licenses.mit;
maintainers = with maintainers; [ hyphon81 ];
};
}