My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/gym/default.nix

35 lines
712 B

{ lib
, buildPythonPackage
, fetchFromGitHub
, numpy
, cloudpickle
}:
buildPythonPackage rec {
pname = "gym";
version = "0.21.0";
src = fetchFromGitHub {
owner = "openai";
repo = pname;
rev = "v${version}";
sha256 = "12b545xz0r2g4z5r7f8amxl7nm0lqymkzwcwhg1bni9h0sxwpv6c";
};
propagatedBuildInputs = [
cloudpickle
numpy
];
# The test needs MuJoCo that is not free library.
doCheck = false;
pythonImportsCheck = [ "gym" ];
meta = with lib; {
description = "A toolkit for developing and comparing your reinforcement learning agents";
homepage = "https://gym.openai.com/";
license = licenses.mit;
maintainers = with maintainers; [ hyphon81 ];
};
}