File tree Expand file tree Collapse file tree 1 file changed +13
-8
lines changed
pkgs/development/python-modules/ale-py Expand file tree Collapse file tree 1 file changed +13
-8
lines changed Original file line number Diff line number Diff line change 1919 importlib-resources ,
2020 numpy ,
2121 typing-extensions ,
22+ jax ,
2223
2324 # tests
2425 gymnasium ,
3334
3435buildPythonPackage rec {
3536 pname = "ale-py" ;
36- version = "0.11.0 " ;
37+ version = "0.11.1 " ;
3738 pyproject = true ;
3839
3940 src = fetchFromGitHub {
4041 owner = "Farama-Foundation" ;
4142 repo = "Arcade-Learning-Environment" ;
4243 tag = "v${ version } " ;
43- hash = "sha256-RgFVpbjJp54FncQzFtdZM7p/1GBMsQ2HvLgIoaokiQc =" ;
44+ hash = "sha256-VrPc3i1VYuThKdQn/wimNzMHNmPIAdTxbh2tuJb4YJY =" ;
4445 } ;
4546
4647 build-system = [
@@ -59,12 +60,16 @@ buildPythonPackage rec {
5960 opencv
6061 ] ;
6162
62- dependencies = [
63- gymnasium
64- importlib-resources
65- numpy
66- typing-extensions
67- ] ;
63+ dependencies =
64+ [
65+ gymnasium
66+ importlib-resources
67+ numpy
68+ typing-extensions
69+ ]
70+ ++ lib . optionals stdenv . hostPlatform . isLinux [
71+ jax
72+ ] ;
6873
6974 postPatch =
7075 # Relax the pybind11 version
You can’t perform that action at this time.
0 commit comments