From 541e967d0ed14b7ae2d632dfa71accc98756ee8c Mon Sep 17 00:00:00 2001 From: Gaetan Lepage Date: Thu, 29 May 2025 23:59:47 +0200 Subject: [PATCH] python312Packages.ale-py: 0.11.0 -> 0.11.1 Diff: https://github.com/Farama-Foundation/Arcade-Learning-Environment/compare/refs/tags/v0.11.0...refs/tags/v0.11.1 Changelog: https://github.com/Farama-Foundation/Arcade-Learning-Environment/releases/tag/v0.11.1 --- .../python-modules/ale-py/default.nix | 21 ++++++++++++------- 1 file changed, 13 insertions(+), 8 deletions(-) diff --git a/pkgs/development/python-modules/ale-py/default.nix b/pkgs/development/python-modules/ale-py/default.nix index e84fc014257b..7c9d147d03ea 100644 --- a/pkgs/development/python-modules/ale-py/default.nix +++ b/pkgs/development/python-modules/ale-py/default.nix @@ -19,6 +19,7 @@ importlib-resources, numpy, typing-extensions, + jax, # tests gymnasium, @@ -33,14 +34,14 @@ buildPythonPackage rec { pname = "ale-py"; - version = "0.11.0"; + version = "0.11.1"; pyproject = true; src = fetchFromGitHub { owner = "Farama-Foundation"; repo = "Arcade-Learning-Environment"; tag = "v${version}"; - hash = "sha256-RgFVpbjJp54FncQzFtdZM7p/1GBMsQ2HvLgIoaokiQc="; + hash = "sha256-VrPc3i1VYuThKdQn/wimNzMHNmPIAdTxbh2tuJb4YJY="; }; build-system = [ @@ -59,12 +60,16 @@ buildPythonPackage rec { opencv ]; - dependencies = [ - gymnasium - importlib-resources - numpy - typing-extensions - ]; + dependencies = + [ + gymnasium + importlib-resources + numpy + typing-extensions + ] + ++ lib.optionals stdenv.hostPlatform.isLinux [ + jax + ]; postPatch = # Relax the pybind11 version