python311Packages.mujoco: 3.1.5 -> 3.1.6

Changelog:
https://mujoco.readthedocs.io/en/latest/changelog.html#version-3-1-6-jun-3-2024
This commit is contained in:
Gaetan Lepage 2024-06-05 08:54:50 +02:00
parent 7e7ddf4e4c
commit da2ccbae0d

View File

@ -18,7 +18,7 @@
buildPythonPackage rec {
pname = "mujoco";
version = "3.1.5";
inherit (mujoco) version;
pyproject = true;
@ -28,7 +28,7 @@ buildPythonPackage rec {
# in the project's CI.
src = fetchPypi {
inherit pname version;
hash = "sha256-kJm6YAE0HMnji3uUuO96ZzRsdjj6PpT1IHQ6NXiR8pY=";
hash = "sha256-fPiIdSbwcedBHcAs4c1mXjm0tgg/3/Sf4TSKgtIxRlE=";
};
nativeBuildInputs = [
@ -82,11 +82,11 @@ buildPythonPackage rec {
''
);
meta = with lib; {
meta = {
description = "Python bindings for MuJoCo: a general purpose physics simulator.";
homepage = "https://mujoco.org/";
changelog = "https://github.com/google-deepmind/mujoco/releases/tag/${version}";
license = licenses.asl20;
maintainers = with maintainers; [ tmplt ];
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ tmplt ];
};
}