mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 07:53:19 +00:00
python311Packages.shimmy: init at 1.3.0
This commit is contained in:
parent
d540e673f7
commit
7a77fae619
92
pkgs/development/python-modules/shimmy/default.nix
Normal file
92
pkgs/development/python-modules/shimmy/default.nix
Normal file
@ -0,0 +1,92 @@
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, pythonOlder
|
||||
, fetchFromGitHub
|
||||
, setuptools
|
||||
, wheel
|
||||
, gymnasium
|
||||
, numpy
|
||||
, ale-py
|
||||
, bsuite
|
||||
, dm-control
|
||||
, gym
|
||||
, imageio
|
||||
, pettingzoo
|
||||
, pytestCheckHook
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "shimmy";
|
||||
version = "1.3.0";
|
||||
pyproject = true;
|
||||
|
||||
disabled = pythonOlder "3.8";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "Farama-Foundation";
|
||||
repo = "Shimmy";
|
||||
rev = "refs/tags/v${version}";
|
||||
hash = "sha256-rYBbGyMSFF/iIGruKn2JXKAVIZIfJDEHUEZUESiUg/k=";
|
||||
};
|
||||
|
||||
build-system = [
|
||||
setuptools
|
||||
wheel
|
||||
];
|
||||
|
||||
dependencies = [
|
||||
gymnasium
|
||||
numpy
|
||||
];
|
||||
|
||||
pythonImportsCheck = [ "shimmy" ];
|
||||
|
||||
nativeCheckInputs = [
|
||||
ale-py
|
||||
bsuite
|
||||
dm-control
|
||||
gym
|
||||
imageio
|
||||
pettingzoo
|
||||
pytestCheckHook
|
||||
];
|
||||
|
||||
disabledTestPaths = [
|
||||
# Requires unpackaged pyspiel
|
||||
"tests/test_openspiel.py"
|
||||
];
|
||||
|
||||
preCheck = ''
|
||||
export HOME=$(mktemp -d)
|
||||
'';
|
||||
|
||||
disabledTests = [
|
||||
# Require network access
|
||||
"test_check_env[bsuite/mnist_noise-v0]"
|
||||
"test_check_env[bsuite/mnist_scale-v0]"
|
||||
"test_check_env[bsuite/mnist-v0]"
|
||||
"test_existing_env"
|
||||
"test_loading_env"
|
||||
"test_pickle[bsuite/mnist-v0]"
|
||||
"test_seeding[bsuite/mnist_noise-v0]"
|
||||
"test_seeding[bsuite/mnist_scale-v0]"
|
||||
"test_seeding[bsuite/mnist-v0]"
|
||||
"test_seeding"
|
||||
|
||||
# RuntimeError: std::exception
|
||||
"test_check_env"
|
||||
"test_seeding[dm_control/quadruped-escape-v0]"
|
||||
"test_rendering_camera_id"
|
||||
"test_rendering_multiple_cameras"
|
||||
"test_rendering_depth"
|
||||
"test_render_height_widths"
|
||||
];
|
||||
|
||||
meta = {
|
||||
changelog = "https://github.com/Farama-Foundation/Shimmy/releases/tag/v${version}";
|
||||
description = "An API conversion tool for popular external reinforcement learning environments";
|
||||
homepage = "https://github.com/Farama-Foundation/Shimmy";
|
||||
license = lib.licenses.mit;
|
||||
maintainers = with lib.maintainers; [ GaetanLepage ];
|
||||
};
|
||||
}
|
@ -13841,6 +13841,8 @@ self: super: with self; {
|
||||
inherit (pkgs) cmake llvmPackages;
|
||||
});
|
||||
|
||||
shimmy = callPackage ../development/python-modules/shimmy { };
|
||||
|
||||
shippai = callPackage ../development/python-modules/shippai { };
|
||||
|
||||
shiv = callPackage ../development/python-modules/shiv { };
|
||||
|
Loading…
Reference in New Issue
Block a user