From da2ccbae0d6082acf447bf33dcf78f41e9f7794c Mon Sep 17 00:00:00 2001 From: Gaetan Lepage Date: Wed, 5 Jun 2024 08:54:50 +0200 Subject: [PATCH] python311Packages.mujoco: 3.1.5 -> 3.1.6 Changelog: https://mujoco.readthedocs.io/en/latest/changelog.html#version-3-1-6-jun-3-2024 --- pkgs/development/python-modules/mujoco/default.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pkgs/development/python-modules/mujoco/default.nix b/pkgs/development/python-modules/mujoco/default.nix index 2ff364503060..4045c0c7ac35 100644 --- a/pkgs/development/python-modules/mujoco/default.nix +++ b/pkgs/development/python-modules/mujoco/default.nix @@ -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 ]; }; }